constants_detail.inc.html

OPTIONAL template file, included by page.html

Template variables required by this page:

<constant_detail loop>
{constant_name} -- name of the define, parsed from the PHP code
{constant_value} -- value of the define, parsed from the PHP code

From docblock.inc.html:

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

Loop used by page.html to display detail about each define() in a procedural page

Example:

<!-- ============ CONSTANT DETAIL =========== -->

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

<loop name="constant_detail">
<A NAME='{constant_name}'><!-- --></A><H3>{constant_name}</H3>
<P><B>{constant_name} = ->{constant_value}<-</B></P>
<include filename="docblock.inc.html"/>
<HR>
</loop name="constant_detail">