Esempio n. 1
0
    /**
     * Writes Container for Section & Category
     */
    function Section_Category(&$row, &$params)
    {
        if ($params->get('section') || $params->get('category')) {
            ?>
			<tr>
				<td>
			<?php 
        }
        // displays Section Name
        HTML_content::Section($row, $params);
        // displays Section Name
        HTML_content::Category($row, $params);
        if ($params->get('section') || $params->get('category')) {
            ?>
				</td>
			</tr>
		<?php 
        }
    }