Beispiel #1
0
 //echo "<input type='button' name='button' onclick=\"location='item.php?op=mod'\" value='" . _AM_PUBLISHER_CREATEITEM . "'>&nbsp;&nbsp;";
 echo '</div></form>';
 // Creating the objects for top categories
 $categoriesObj =& $publisher->getHandler('category')->getCategories($publisher->getConfig('idxcat_perpage'), $startcategory, 0);
 publisherOpenCollapsableBar('createdcategories', 'createdcategoriesicon', _AM_PUBLISHER_CATEGORIES_TITLE, _AM_PUBLISHER_CATEGORIES_DSC);
 echo "<table width='100%' cellspacing=1 cellpadding=3 border=0 class = outer>";
 echo '<tr>';
 echo "<th width='20' class='bg3' align='center'><strong>" . _AM_PUBLISHER_ITEMCATEGORY_ID . '</strong></td>';
 echo "<th class='bg3' align='left'><strong>" . _AM_PUBLISHER_ITEMCATEGORYNAME . '</strong></td>';
 echo "<th width='60' class='bg3' width='65' align='center'><strong>" . _CO_PUBLISHER_WEIGHT . '</strong></td>';
 echo "<th width='60' class='bg3' align='center'><strong>" . _AM_PUBLISHER_ACTION . '</strong></td>';
 echo '</tr>';
 $totalCategories =& $publisher->getHandler('category')->getCategoriesCount(0);
 if (count($categoriesObj) > 0) {
     foreach ($categoriesObj as $key => $thiscat) {
         PublisherUtilities::displayCategory($thiscat);
     }
     unset($key, $thiscat);
 } else {
     echo '<tr>';
     echo "<td class='head' align='center' colspan= '7'>" . _AM_PUBLISHER_NOCAT . '</td>';
     echo '</tr>';
     $categoryid = '0';
 }
 echo "</table>\n";
 include_once $GLOBALS['xoops']->path('class/pagenav.php');
 $pagenav = new XoopsPageNav($totalCategories, $publisher->getConfig('idxcat_perpage'), $startcategory, 'startcategory');
 echo '<div style="text-align:right;">' . $pagenav->renderNav() . '</div>';
 echo '<br />';
 publisherCloseCollapsableBar('createdcategories', 'createdcategoriesicon');
 echo '<br>';