NAVIGATION
This shows you the differences between two versions of the page.
|
deutsch:andere-erweiterungen:backend:custom-links-in-home [2010/09/08 07:44] Knut Heermann (flip-flop) |
deutsch:andere-erweiterungen:backend:custom-links-in-home [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| {{indexmenu_n>10}} | {{indexmenu_n>10}} | ||
| - | ====== Custom links in "home" ====== | + | ====== Custom links in "HOME" ====== |
| - | **Backend:** Mit diesem Programm können Benutzerlinks in " Home" erzeugt werden. Jede Art von Links ist möglich. | + | **Backend:** Mit diesem Programm können Benutzerlinks in " HOME" erzeugt werden. Jede Art von Links ist möglich. |
| Inspiriert durch dieses Programm von Markus: [[deutsch/phpwcms-system/admin/backend-standardtext]] | Inspiriert durch dieses Programm von Markus: [[deutsch/phpwcms-system/admin/backend-standardtext]] | ||
| Line 36: | Line 36: | ||
| ---- | ---- | ||
| - | FIXME Translate | ||
| \\ | \\ | ||
| - | Have a look into the files "include/inc_ext/be_special/startupX(_YY).php" and you will understand the functional. | + | FIXME bessere Erklärung \\ |
| + | Schaue in die Datei "include/inc_ext/be_special/startupX(_YY).php" um die Funktion verstehen. | ||
| - | The vars for e.g. "%%$BL['be_custom_link01_1_title']%%" you will find in "include/inc_ext/be_special/lang/backend/(YY)/lang.inc.php". | + | Die Variablen für z.B. "%%$BL['be_custom_link01_1_title']%%" finden wir in "include/inc_ext/be_special/lang/backend/(YY)/lang.inc.php". |
| - | <note>Play around a little bit. **If there is a section in "startupX(_YY).php" you don´t need, please kill the entries.** </note> | + | <note>Bitte ein wenig ausprobieren. **Wenn ein Bereich in "startupX(_YY).php" nicht gebraucht wird, bitte einfach den entsprechenden Eintrag löschen.** </note> |
| ~~UP~~ | ~~UP~~ | ||
| - | ===== Some link examples: ===== | + | ===== Einige Linkbeispiele: ===== |
| - | **Open a folder with the ID=13:** //(You can´t open a folder if the parent folder is closed)//. | + | **Öffne ein Verzeichnis ID=13:** //(Es können keine Ordner unterhalb geschlossenen Elternordnern geöffnet werden)//. |
| <code html><a href="phpwcms.php?do=articles&open=13:1"></code> | <code html><a href="phpwcms.php?do=articles&open=13:1"></code> | ||
| \\ | \\ | ||
| - | **Open the article with the ID=15:** | + | **Öffne den Artikel mit der ID=15:** |
| <code html><a href="phpwcms.php?do=articles&p=2&s=1&id=15"></code> | <code html><a href="phpwcms.php?do=articles&p=2&s=1&id=15"></code> | ||
| \\ | \\ | ||
| - | **Edit the article with the ID=15:** | + | **Editiere den Artikel mit der ID=15:** |
| <code html><a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=15"></code> | <code html><a href="phpwcms.php?do=articles&p=2&s=1&aktion=1&id=15"></code> | ||
| \\ | \\ | ||
| - | **Edit the contentpart with the ID=22 in category ID=14:** | + | **Editiere den Contentpart mit der ID=22 in der Kategorie ID=14:** |
| <code html><a href="phpwcms.php?do=articles&p=2&s=1&aktion=2&id=14&acid=22"></code> | <code html><a href="phpwcms.php?do=articles&p=2&s=1&aktion=2&id=14&acid=22"></code> | ||
| Line 70: | Line 70: | ||
| - | Insert this snippet to template/inc_default/startup.php | + | Setze diesen Programmteil in die "template/inc_default/startup.php" ein. |
| + | |||
| + | Dieser Programmteil integriert die neue Datei startupX.php. | ||
| + | |||
| + | **Datei:** template/inc_default/startup.php | ||
| + | <code php> | ||
| + | |||
| + | <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."); } | ||
| + | // ------------------------------------------------------------------------------------------- | ||
| + | ?> | ||
| - | This snippet integrates the new file startupX.php. | ||
| - | **File:** template/inc_default/startup.php | ||
| - | <code hrml> | ||
| <!-- fill in information for your customers here --> | <!-- fill in information for your customers here --> | ||
| Line 98: | Line 108: | ||
| ===== Download: ===== | ===== Download: ===== | ||
| - | **Files in zip archive:** | + | **Dateien des ZIP-Archivs:** |
| * custom links | * custom links | ||
| - | * include/inc_ext/be_special/startupX.php //(include the right startupX(_YY).php)// | + | * include/inc_ext/be_special/startupX.php //(bilde die richtige 2startupX(_YY).php" ein)// |
| - | * include/inc_ext/be_special/startupX_de.php //(The german file)// | + | * include/inc_ext/be_special/startupX_de.php //(Die deutsche Datei)// |
| - | * include/inc_ext/be_special/startupX_en.php //(The englisch file)// | + | * include/inc_ext/be_special/startupX_en.php //(Die englische Datei)// |
| - | * include/inc_ext/be_special/act_fileX.php //(file for "delete all files from filecenter trash can" -> [[english/other-enhancements/backend/custom-links-in-home/move-deleted-files]])// | + | * include/inc_ext/be_special/act_fileX.php //(Datei für "Leere den Papierkorb" -> [[english/other-enhancements/backend/custom-links-in-home/move-deleted-files]])// |
| - | * include/inc_ext/be_special/lang/backend/de/lang.inc.php //(The german language file)// | + | * include/inc_ext/be_special/lang/backend/de/lang.inc.php //(Die deutsche Sprachdatei)// |
| - | * include/inc_ext/be_special/lang/backend/en/lang.inc.php //(The english language file)// | + | * include/inc_ext/be_special/lang/backend/en/lang.inc.php //(Die englische Sprachdatei)// |
| - | * filebrowserX.php //(A passive file browser with some extensions: [[english/other-enhancements/backend/custom-links-in-home/filebrowserx]])// | + | * filebrowserX.php //(Ein passiver Dateibrowser mit einigen Erweiterungen: [[english/other-enhancements/backend/custom-links-in-home/filebrowserx]])// |
| \\ | \\ | ||
| - | **File:** {{:english:other-enhancements:backend:be_special_v10.zip|custom links, filebrowserX, act_fileX}} | + | **Datei:** {{:english:other-enhancements:backend:be_special_v10.zip|custom links, filebrowserX, act_fileX}} |