|
PmWiki /
Page specific variablesauthors (intermediate) This page describes the "variables" that are associated with pages. Page variables have the form Note: Do not confuse these variables (set and used only in PmWiki pages) with PHP variables. Page variables can be read in PHP with the PageVar() function. Note that these variables do not necessarily exist in the PHP code, because they have to be determined for a specific page. (However, they are usable in FmtPageName strings.) There is also the form Default page variablesThe page variables defined for PmWiki are: {$Action} - page's url action argument, as in ""
{$BaseName} - page's "base" form (stripping any prefixes or suffixes defined via ) as in "PmWiki.PageVariables"
{$DefaultGroup} - default group name, as in "Main"
{$DefaultName} - name of default page, as in "HomePage" (take note also of $PagePathFmt for setting a homepage for a group)
{$Description} - page's description from the (:description:) markup, as in "Documentation for "variables" that are associated with pages."
{$FullName} - page's full name, as in "PmWiki.PageVariables"
{$Group} - page's group name, as in "PmWiki"
{$Groupspaced} - spaced group name, as in "Pm Wiki"
{$LastModified} - date page was edited, as in "July 24, 2026, at 09:34 pm"
{$LastModifiedBy} - page's last editor, as in "Petko"
{$LastModifiedHost} - IP of page's last editor, as in ""
{$LastModifiedSummary} - Summary from last edit, as in "pvCoreAuthCache, callback functions (+572)"
{$LastModifiedTime} - time page was edited in unix-style timestamp, as in "1784921669"
This can be used (preceded by '@') in {(ftime)} and other date/time markups.
{$Name} - page name, as in "PageVariables"
{$Namespaced} - spaced page name, as in "Page Variables"
{$PageUrl} - page's url, as in "https://home.mengelke.de/pmwiki-2.7.2/pmwiki.php?n=PmWiki.PageVariables"
{$PasswdRead} - "read" permissions for the page e.g. ""
{$PasswdEdit} - "edit" permissions for the page e.g. ""
{$PasswdAttr} - "attr" permissions for the page e.g. ""
{$RequestedPage} - page requested in URL, used on Site.PageNotFound. e.g. "PmWiki.PageVariables"
{$SiteGroup} - default interface group name for e.g. SideBar, forms, templates, as in "Site"
{$SiteAdminGroup} - default administrative group name for e.g. AuthUser, Blocklist, as in "SiteAdmin"
{$WikiTitle} - title of the website, as in "PmWiki"
{$Title} - page title (may differ from Name), as in "Page specific variables"
{$Titlespaced} - either the page title (if defined), or the spaced page name, as in "Page specific variables"
{$GroupHomePage}, {$GroupHomePageName}, {$GroupHomePageTitle}, {$GroupHomePageTitlespaced}, {$GroupHomePageUrl} - information about the homepage in the group of the current page, respectively the full name of the homepage, its {$Name}, {$Title}, {$Titlespaced}, and {$PageUrl} as in "PmWiki.PmWiki", "PmWiki", "PmWiki", "Pm Wiki", "https://home.mengelke.de/pmwiki-2.7.2/pmwiki.php?n=PmWiki.PmWiki"
All other variables derived from the group homepage can be output with nested markup, for example {{$GroupHomePage}$LastModified}, {{$GroupHomePage}$Description}.
In addition to the above, there are some page-invariant variables available through this markup: {$Author} - the name of the person currently interacting with the site, as in ""
{$AuthId} - current authenticated id, as in "" note the lower case 'd'.
{$Version} - PmWiki version, as in "pmwiki-2.7.2"
{$VersionNum} - The internal version number, as in "2007002"
{$RevisionNum} - The internal revision number, as in "5570"
{$VersionShort} - The short version number, as in "2.7.2"
{$ScriptUrl} - The URL to the pmwiki script, as in "https://home.mengelke.de/pmwiki-2.7.2/pmwiki.php"
Special referencesSpecial referenced variables are used to specify the context of the variable when:
Prefixing the variable name with an asterisk (*) means the variable's value is related to the browsed page or main (body) page.
See also $EnableRelativePageVars.
Special references are also used in page text variables and page list templates.
For example you can test to see if the page is part of another page
or refer to the main page in a sidebar, footer, or header
Page variable security (pvCoreAuthCache)The form If the other pages are protected and the visitor has no read permissions, PageVariables, unlike PageTextVariables, normally display the values. While most variables do not contain sensitive information, some of them could do: $Title, $Description and those starting with $LastModified. Administrators and module developers can redefine the sensitive page variables to respect authentications, by using the "$authpage" variable instead of "$page", and 'pvCoreAuthCache' instead of 'pvCorePCache' in the definition. The following snippet can be added in
foreach($FmtPV as $k=>$v) {
if(preg_match('/^\\$(Title(spaced)?|LastModified(By|Host|Summary|Time)?|Description)$/', $k)) {
$FmtPV[$k] = str_replace(['$page', 'pvCorePCache'], ['$authpage', 'pvCoreAuthCache'], $v);
}
}
Custom page variablesYou may add custom page variables as a local customization. In a local configuration file or a recipe script, use the variable
$FmtPV['$VarName'] = "myCallbackFunction";
function myCallbackFunction($group, $name) {
# do something, return a text string.
}
See below. To make a global variable into a page variable, add it to the 'pvCoreGlobals' callback:
## Create a {$BaseUrl} page variable
$GLOBALS['BaseUrl'] = $UrlScheme."://".$_SERVER["HTTP_HOST"]."/Wiki";
$FmtPV['$BaseUrl'] = 'pvCoreGlobals';
You can also have a function create the string.
## Create a {$BaseUrl} page variable
function BaseUrl() {
global $UrlScheme;
return $UrlScheme."://".$_SERVER['HTTP_HOST']."/Wiki";
}
$FmtPV['$BaseUrl'] = 'BaseUrl';
The callback function can have any of the following parameters, in any order:
$pagename, # the fullname of the currently browsed page
$var, # the name of the page variable requested, e.g. '$FullName'
# the following are related to the page for which the variable
# is requested, e.g. OtherPage for {OtherPage$FullName}
$pn, # the fullname of the other page
$group, # the group name
$name, # the page name
$page, # an array of page properties, e.g. 'time', 'csum', 'author'
Please note that it is also possible to define PHP code that is directly are $FmtPV['$Var'] = $_REQUEST['Var']; # critically insecure, allows PHP code injection$FmtPV['$Var'] = '"'. addslashes($_REQUEST['Var']).'"'; # critically insecure, allows PHP code injection
See the recipe Cookbook:HttpVariables for a better way to use these variables. For an easier and more secure operation, please define callback functions as documented above. See also
Is there a variable like $LastModified, but which shows me the creation time? No, but you can create one in config.php. For instance:
If you like the same format that you define in config.php with $TimeFmt, use
$FmtPV['$Created'] = 'MyPVCreated';
function MyPVCreated($page) {
global $TimeFmt;
return PSFT($TimeFmt, $page["ctime"]);
}
Previously, PmWiki didn't store a "ctime" page attribute. Some core pages, and old wiki pages, may not have this information. See also the function PSFT(). How can I test if a variable is set and/or not empty? Use Categories: PmWiki Developer This page may have a more recent version on pmwiki.org: PmWiki:PageVariables, and a talk page: PmWiki:PageVariables-Talk. |