constants_summary.inc.html

OPTIONAL Template file, included by page.html

Template variables required by this page:

<constants loop>
{page} -- file.html name of the current documentation page
{constant_name} -- name of the constant, parsed from the PHP code
{constant_value} -- value of the constant, parsed from the PHP code
{constant_sdesc} -- short description of the constant, parsed from the DocBlock

Summary of all defines in a procedural page

Example:

<!-- =========== CONSTANT SUMMARY =========== -->
<A NAME='constant_summary'><!-- --></A>
<TABLE BORDER='1' CELLPADDING='3' CELLSPACING='0' WIDTH='100%'>
   <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
      <TD>
         <FONT SIZE='+2'><B>Constant Summary</B></FONT>
      </TD>
   </TR>
</TABLE>
<TABLE BORDER='1' CELLPADDING='3' CELLSPACING='0' WIDTH='100%'>
   <THEAD>
      <TR><TH>CONSTANT NAME</TH><TH>CONSTANT VALUE</TH><TH>DESCRIPTION</TH></TR>
   </THEAD>
   <TBODY>
      <loop name="constants">
      <TR BGCOLOR='white' CLASS='TableRowColor'>
         <TD><A HREF='{page}#{constant_name}'>{constant_name}</A></TD>
         <TD>{constant_value}</TD>
         <TD>{constant_sdesc}</TD>
      </TR>
      </loop name="constants">
   </TBODY>
</TABLE>
<br>