/** * function getHTML * <pre> * This method returns the HTML data generated by this object. * </pre> * @return [STRING] HTML Display data. */ function getHTML() { // Uncomment the following line if you want to create a template // tailored for this page: //$path = $this->pathModuleRoot.'templates/'; // Otherwise use the standard Templates for the site: $path = SITE_PATH_TEMPLATES; /* * store the link values */ // example: // $this->linkValues[ 'view' ] = 'add/new/href/data/here'; // store the link labels $this->linkLabels['edit'] = $this->labels->getLabel('[Edit]'); $this->linkLabels['del'] = $this->labels->getLabel('[Delete]'); $this->linkLabels['cont'] = $this->labels->getLabel('[Continue]'); // $this->linkLabels[ 'view' ] = 'new link label here'; /* * store any additional link Columns */ // example: $title = $this->labels->getLabel('[title_access_groups]'); $columnLabel = $this->labels->getLabel('[accessGroups]'); $link = $this->linkValues['accessGroups']; $fieldName = 'navbarlink_id'; $this->addLinkColumn($title, $columnLabel, $link, $fieldName); $title = $this->labels->getLabel('[title_viewer]'); $columnLabel = $this->labels->getLabel('[viewers]'); $link = $this->linkValues['viewers']; $fieldName = 'navbarlink_id'; $this->addLinkColumn($title, $columnLabel, $link, $fieldName); /* * Update any label tags ... */ // example: $groupManager = new RowManager_NavBarGroupManager($this->navbargroup_id); $seriesKey = moduleNavBar::MULTILINGUAL_SERIES_KEY; $pageKey = $groupManager->getXMLNodeName(); $groupMultiLingual = new MultilingualManager($this->viewer->getLanguageID(), $seriesKey, $pageKey); $bridgeManager = new RowLabelBridge($groupManager, $groupMultiLingual); $name = $bridgeManager->getLabel(); $this->labels->setLabelTag('[Title]', '[groupName]', $name); // NOTE: this parent method prepares the $this->template with the // common AdminBox data. $this->prepareTemplate($path); // store the statevar id to edit $this->template->set('editEntryID', $this->navbarlink_id); // store all the fields to the template $this->setFormFieldsToTemplate(); /* * Form related Template variables: */ /* * Insert the date start/end values for the following date fields: */ // example: //$this->template->set( 'startYear_[fieldName]', 2000); //$this->template->set( 'endYear_[fieldName]', 2010); /* * List related Template variables : */ // Store the XML Node name for the Data Access Field List $xmlNodeName = $this->dataManager->getXMLNodeName(); $this->template->set('rowManagerXMLNodeName', $xmlNodeName); // store the primary key field name for the data being displayed $this->template->set('primaryKeyFieldName', 'navbarlink_id'); // store data list to the template // NOTE: we initialize it here to make sure we capture any new data // from a recent processData() call. // $this->dataList = new NavBarLinksList( $this->navbargroup_id, $this->sortBy ); $linkManager = new RowManager_NavBarLinksManager(); $linkManager->setGroupID($this->navbargroup_id); $bridgeManager = new RowLabelBridge($linkManager, $this->bridgeMultiLingualManager); $bridgeManager->setSortOrder($this->sortBy); $this->dataList = $bridgeManager->getListIterator(); $this->template->setXML('dataList', $this->dataList->getXML()); /* * Add any additional data required by the template here */ $moduleManager = new RowManager_siteModuleManager(); $moduleManager->setSortOrder($moduleManager->getLabelField()); $moduleList = $moduleManager->getListIterator(); $this->template->set('list_module_id', $moduleList->getDropListArray()); $dateList = array('0000-00-00 00:00:00' => ''); $this->template->set('list_navbarlink_startDateTime', $dateList); $this->template->set('list_navbarlink_endDateTime', $dateList); $templateName = TEMPLATE_ADMIN_BOX; // if you are creating a custom template for this page then // replace $templateName with the following: //$templateName = 'page_LinkList.php'; return $this->template->fetch($templateName); }