<< | Variablen? | >>

noch zu übersetzen

$HTMLStylesFmt
An array of CSS statements to be included in the page's output along with other HTML headers. This array provides an easy place for scripts to add custom CSS statements.
$RecentChangesFmt
An array specifying the format of the RecentChanges listing.
The format can be specified in your config.php using the following:
     $RecentChangesFmt = array(
       'Main.AllRecentChanges' => 
       '* [[$Group.$Name]]  . . . $CurrentTime by $AuthorLink',
       '$Group.RecentChanges' =>
       '* [[$Group/$Name]]  . . . $CurrentTime by $AuthorLink');
Note that changes made to the format will only affect new edits. In other words, you will need to edit a page for your new format to be visible. Note also that you need to have two spaces between the page name and the other information about the edit.
$WikiTitle
A variable which contains the Wiki title as displayed by the browser
$WikiStyle
An array which contains the predefined WikiStyles which can be used on a textpage.
See: PmWiki.CustomWikiStyles
$MaxIncludes
Controls the number of times that pages can be included via the (:include:) and other directives, used to control recursion and otherwise pose a sanity check on page contents. $MaxIncludes defaults to 50, but can be set to any value by the wiki administrator.
        $MaxIncludes = 50;            # default
        $MaxIncludes = 1000;          # allow lots of includes
        $MaxIncludes = 0;             # turn off includes
$Skin
Points to the directory of an own or different layout skin.