vars_detail.inc.html

OPTIONAL template file, included by class.html

Template variables required by this page:

<var_detail loop>
{var_name} -- name of the class $variable
{var_type} -- data type of the variable, defined with @var tags in the docblock

From docblock.inc.html:

{sdesc} -- short description from DocBlock
{sdesc} -- long description from DocBlock
<docblock loop> --
{keyword} -- tag name
{data} -- tag information (author name in @author tag, @see link, etc.)

Detail about a class variable

Example:

<!-- ============ VARIABLE DETAIL =========== -->

<A NAME='variable_detail'></A>
<TABLE BORDER='1' CELLPADDING='3' CELLSPACING='0' WIDTH='100%'>
   <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
      <TD>
         <FONT SIZE='+2'><B>Variable Detail</B></FONT>
      </TD>
   </TR>
</TABLE>

<loop name="var_detail">
<A NAME='{var_name}'><!-- --></A><H3>{var_name}</H3>
<b>Data type:</b> {var_type}<br>
<include filename="docblock.inc.html"/>
<HR>
</loop name="var_detail">