W3TPL/tag/load

From Woozle Writes Code
< W3TPL‎ | tag
Revision as of 20:31, 3 May 2011 by Woozle (talk | contribs) (Created page with "==Parameters== * '''echo''' - if present, echo the page's parsed contents * '''let'''=''name of var to receive page's contents'' * '''local''' - if present, page is parsed in its...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Parameters

  • echo - if present, echo the page's parsed contents
  • let=name of var to receive page's contents
  • local - if present, page is parsed in its own context rather than parent's
  • page=name of wiki page to load

Examples

<xml> <func ShowRecentLinks max>

 <let name=idx />
 <let name=including val=1 />
 <for table="qryW3_Titles_Catgs" where="(cl_to='Data/links') AND (page_namespace=0)" sort="page_title DESC" limit=$max name=pg hide>
   <let name=pg_title val="@row.page_title" />
   <let name=idx inc />
   <if not flag=noLoad>
     <load page=$pg_title />
   </if>
   <if flag=data[Title]>
     <call GetLinkBrief />
   </if><else>
     <let name=links.out>
  • [[</let>
     <let name=links.out append copy=pg_title />
     <let name=links.out append>]]</let>
   </else>
   <let name=links.rtn append copy=links.out />
   <let name=links.out />
   <let name=data />
 </for>

</func> </xml>