NAVIGATION
This shows you the differences between two versions of the page.
|
english:phpwcms-system:admin:backend-default-text [2009/10/24 14:07] Knut Heermann (flip-flop) |
english:phpwcms-system:admin:backend-default-text [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 3: | Line 3: | ||
| ====== backend default text ====== | ====== backend default text ====== | ||
| - | FIXME (Translate) | ||
| - | {{indexmenu_n>800}} | ||
| - | ====== Backend Standardtext ====== | + | The backend default text will be shown every time you are logging into your site's backend. You can show the content of this page within all of your phpwcms installations. |
| - | + | Think of it as a convenient way to show hot news to all of your customers or use it individually as some TODO list or.... | |
| - | + | ||
| - | Der Backend Standard Text wird auf der Login Seite ins Backend, | + | |
| - | beim Eintritt (Home) angezeigt. Es ist somit Möglich auf allen | + | |
| - | Installationen von PHPWCMS diesen Text anzeigen zu lassen. | + | |
| - | Eine Anwendung wäre z.b. wenn Sie allen Ihren Kunden aktuelle | + | |
| - | News auf Ihre Startseite im Login Bereich senden möchten. | + | |
| + | Have a look to: [[english/other-enhancements/backend/custom-links-in-home]] | ||
| + | \\ | ||
| + | ---- | ||
| **Autor:** Markus Schartner (markus_s) http://www.4x4-tirol.at 2009/10/24 \\ | **Autor:** Markus Schartner (markus_s) http://www.4x4-tirol.at 2009/10/24 \\ | ||
| **CMS Version:** >= V1.3.x | **CMS Version:** >= V1.3.x | ||
| + | ---- | ||
| + | \\ | ||
| - | + | Here is some picture: | |
| - | Hier eine Abbildung: | + | |
| {{:deutsch:phpwcms-system:admin:kommunikation.png|}} | {{:deutsch:phpwcms-system:admin:kommunikation.png|}} | ||
| - | Sie müssen eine Seite im Netz erstellen auf denen Sie die "News" Seite pflegen. | + | You have to set up a page where you will keep the news and information updated. |
| - | mit folgenden Code können Sie dann auf diese Seite zugreifen. | + | By using the following code you then can pull this page into your backend default text page. |
| - | Dieser Code ist unter "Backend Standardtext" einzutragen. | + | Drop it into the text input field under /admin/"backend default text". |
| + | |||
| + | |||
| + | <code php> | ||
| + | |||
| + | <?php | ||
| + | // -------------------------------------!!!! Don´t touch !!!!--------------------------------- | ||
| + | // obligate check for phpwcms constants | ||
| + | if (!defined('PHPWCMS_ROOT')) {die("You Cannot Access This Script Directly, Have a Nice Day."); } | ||
| + | // ------------------------------------------------------------------------------------------- | ||
| + | ?> | ||
| - | <code html> | + | <?php |
| - | <? | + | |
| function url_include($url) { | function url_include($url) { | ||
| $ch = curl_init(); | $ch = curl_init(); | ||
| Line 47: | Line 52: | ||
| </code> | </code> | ||
| - | hier die index.php - welche die News Seite bildet: | + | \\ |
| + | here is index.php - which is setting up the news page: | ||
| <code html> | <code html> | ||