Vorlage:Artikel:Start: Unterschied zwischen den Versionen
Aus Afterbuy-Wiki
Admin (Diskussion | Beiträge) |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
− | <phptag> | + | <phptag> |
+ | $title='Titel'; | ||
+ | $toc='ja'; | ||
+ | $text='Titeltext'; | ||
+ | if(isset($argv) && is_array($argv) && !empty($argv)){ | ||
+ | if(isset($argv['title']) && trim($argv['title'])!=""){ | ||
+ | $title=trim($argv['title']); | ||
+ | } | ||
+ | if(isset($argv['toc']) && trim($argv['toc'])!=""){ | ||
+ | $toc=trim($argv['toc']); | ||
+ | } | ||
+ | if(isset($argv['text']) && trim($argv['text'])!=""){ | ||
+ | $text=trim($argv['text']); | ||
+ | } | ||
+ | } | ||
if(isset($GLOBALS['include']) && $GLOBALS['include']){ | if(isset($GLOBALS['include']) && $GLOBALS['include']){ | ||
− | echo | + | echo $text; |
} else { | } else { | ||
− | + | echo '{{Artikel:Start:Full|title='.$title.'|toc='.$toc.'|text='.$text.'}}'; | |
} | } | ||
</phptag> | </phptag> | ||
− | |||
− |
Version vom 29. Juni 2021, 13:52 Uhr
Titel
Titeltext