Recent Changes - Search:

u8hodt1 1l6e3rcn4 <a href="http://mtcg.snu.ac.kr/index.php?mid=sphmsg&document_srl=9525#">maglie calcio poco prezzo</a> zw8hd0bag 4wlapzc5x\n 1o8xnzej aklmrgf <a href="http://steelcongress.ru/matthias-fodboldtrojer-med-tryk-susannah/">billige fodboldtr&oslash;jer</a> wu0onr c5pw24\n uzcfo7p louvx0nfkr <a href="http://www.robotous.com/index.php?mid=photo&document_srl=5422#">maglie calcio bambino</a> 6p81a49ju0 4knlajd6h\n

(:Summary:Contains the 'action' links (like Browse, Edit, History, etc.), placed at the top of the page, see site page actions:) (:comment This page can be somewhat complex to figure out the first time you see it. Its contents are documented at PmWiki.SitePageActions if you need help. :) * View * Edit * History * Print

 (:comment delete if and ifend to enable backlinks:)

* Backlinks

OtherVariables

(:Summary: PmWiki group header. Includes styles and trail.:) (:comment please leave the multiple style definitions concatenated as a single line. Linebreaks do appear in the output when the wiki is configured with linebreaks enabled -- thanks!:) (:comment included in PmWiki localisation headers and footers :)

 
(:nl:)(:Summary:Variables not yet classified:)

:$FmtV: : :This variable is an array that is used for string substitutions at the end of a call to @@FmtPageName()@@. For each element in the array, the "key" (interpreted as a string) will be replaced by the corresponding "value". The variable is intended to be a place to store substitution variables that have frequently changing values (thus avoiding a rebuild of the variable cache making @@FmtPageName()@@ faster). Also see $FmtP. ''Values of $FmtV are set by the internal functions FormatTableRow, LinkIMap, HandleBrowse, PreviewPage, HandleEdit, PmWikiAuth, and PasswdVar, apparently to set values for system generated string substitutions like PageText.''

:$FmtP: : :This variable is an array that is used for pattern substitutions near the beginning of a call to FmtPageName. For each element in the array, the "key" (interpreted as a pattern) will be replaced by the corresponding value evaluated for the name of the current page. This is for instance used to handle $-substitutions that depend on the pagename passed to FmtPageName(). Also see $FmtV. From robots.php: ''If $EnableRobotCloakActions is set, then a pattern is added to $FmtP to hide any "?action=" url parameters in page urls generated by PmWiki for actions that robots aren't allowed to access. This can greatly reduce the load on the server by not providing the robot with links to pages that it will be forbidden to index anyway.''

:$FmtPV: : :This variable is an array that is used for defining Page Variables. New variables can be defined with $FmtPV['$VarName'] = 'variable definition'; which can be used in markup with {$VarName}. Please note that the contents of $FmtPV['$VarName'] are eval()ed to produce the final text for $VarName, so the contents must be a PHP expression which is valid at the time of substitution. In particular, this does not work:

:: :#This doesn't work :: :$FmtPV['$MyText'] = "This is my text."; # WARNING: Doesn't work!

: :The problem is that the text This is my text. is not a valid PHP expression. To work it would need to be placed in quotes, so that what actually gets stored in $FmtPV['$MyText'] is "This is my text." which '''is''' a valid PHP expression for a text string. Thus the correct way to do this would be with an extra set of quotes:

:: :#This will work :: :$FmtPV['$MyText'] = '"This is my text."';

: :This also has implications for how internal PHP or PmWiki variables are accessed. To have the page variable $MyVar produce the contents of the internal variable $myvar, many folks try the following which does not work:

:: :#This doesn't work either! :: :$myvar = SomeComplexFunction(); :: :$FmtPV['$MyVar'] = $myvar; # WARNING: Doesn't work!

: :There are several correct ways to do this, depending on whether you need the value of the $myvar variable as it was at the time the $FmtPV entry was created, or at the time that a particular instance of $MyVar is being rendered on a page. For most simple page variables that don't change during the processing of a page its more efficient to set the value when the entry is created:

:: :$myvar = SomeComplexFunction(); :: :$FmtPV['$MyVar'] = "'" . $myvar . "'"; #capture contents of $myvar

: :NOTE: If $myvar should contain single quotes, the above won't work as is, and you'll need to process the variable to escape any internal quotes.

: :For more complex cases where an internal variable may have different values at different places in the page (possibly due to the effects of other markup), then you need to make the $FmtPV entry make an explicit reference to the global value of the variable (and the variable had better be global) like this:

:: :global $myvar; :: :$FmtPV['$MyVar'] = '$GLOBALS["myvar"]';

: :Finally, there's nothing to stop you from simply having the evaluation of the $FmtPV entry execute a function to determine the replacement text:

:: :# add page variable {$Today}, formats today's date as yyyy-mm-dd :: :$FmtPV['$Today'] = 'strftime("%Y-%m-%d", time() )';

>>frame<< : : Once again, please note that the values of the elements of $FmtPV are @@eval()@@ed so always sanitize any user input. The following is very insecure:

:: : $FmtPV['$Var'] = $_REQUEST['Var']; # critically insecure, allows PHP code injection

: : You should sanitize the user input to contain only expected values, or make sure the value is a quoted string, for example:

:: :

# we only expect numeric values of Var
$FmtPV['$Var'] = intval($_REQUEST['Var']);
<:vspace>
# properly escaped quoted string.
$FmtPV['$Var'] = '"'. addslashes($_REQUEST['Var']) . '"';
>><<

: :See Cookbook:MoreCustomPageVariables for more examples of how to use $FmtPV.

:$MaxPageTextVars: This variable prevents endless loops in accidental recursive PageTextVariables which could lock down a server. Default is 500 which means that each PageTextVariable from one page can be displayed up to 500 times in one wiki page. If you need to display it more than 500 times, set in config.php something like
@@$MaxPageTextVars = 10000;@@ # ten thousand times

:$PageCacheDir: Enables the cache of most of the HTML for pages with no conditionals. The variable contains the name of a writable directory where PmWiki can cache the HTML output to speed up subsequent displays of the same page. Default is empty, which disables the cache. See also $PageListCacheDir.

  # Enable HTML caching in work.d/
  $PageCacheDir = 'work.d/';

(:nl:)(:Summary:Trail and talk page links:) (:comment included in PmWiki localisation headers and footers :)

 

<<? >>bgcolor=#ffe border-top="1px solid black" font-size=.8em<< This page may have a more recent version on pmwiki.org: PmWiki:OtherVariables, and a talk page: PmWiki:OtherVariables-Talk. >><<

Edit - History - Print - Recent Changes - Search
Page last modified on November 10, 2014, at 04:33 PM