/**
  * 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;
     $this->template = new Template($path);
     // store the form action information
     $this->template->set('formAction', $this->formAction);
     // store the link values
     // example:
     // $this->linkValues[ 'view' ] = 'add/new/href/data/here';
     $this->template->set('linkValues', $this->linkValues);
     // 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';
     $this->template->set('linkLabels', $this->linkLabels);
     // store any additional link Columns
     // example:
     //$title = $this->labels->getLabel( '[title_groups]');
     //$columnLabel = $this->labels->getLabel( '[groups]');
     //$link = $this->linkValues[ 'groups' ];
     //$fieldName = 'accessgroup_id';
     //$this->addLinkColumn( $title, $columnLabel, $link, $fieldName);
     $this->template->set('linkColumns', $this->linkColumns);
     // store the statevar id to edit
     $this->template->set('editEntryID', $this->language_id);
     // store the current op type
     $this->template->set('opType', $this->opType);
     // store the page labels in XML format...
     // NOTE: use this location to update any label tags ...
     // example:
     // $name = $user->getName();
     // $this->labels->setLabelTag( '[Title]', '[userName]', $name);
     $this->template->setXML('pageLabels', $this->labels->getLabelXML());
     // store all the fields to the template
     $this->setFormFieldsToTemplate();
     /*
      * Form related Template variables:
      */
     // save the list of form fields
     $this->template->set('formFieldList', $this->formFields);
     // store the field types being displayed
     $fieldTypes = explode(',', FormProcessor_LanguageList::FORM_FIELD_TYPES);
     $this->template->set('formFieldType', $fieldTypes);
     /*
      * List related Template variables :
      */
     // Store the XML Node name for the Data Access Field List
     //        $xmlNodeName = RowLabelBridge_LanguageLabelManager::XML_NODE_NAME;
     $xmlNodeName = $this->dataManager->getXMLNodeName();
     $this->template->set('rowManagerXMLNodeName', $xmlNodeName);
     // store the primary key field name for the data being displayed
     $this->template->set('primaryKeyFieldName', 'language_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 LanguageLabelList( $this->sortBy );
     $languageManager = new RowManager_LanguageManager();
     $bridgeManager = new LanguageLabelBridge($languageManager, $this->bridgeMultiLingualManager);
     $this->dataList = $bridgeManager->getListIterator();
     $this->template->setXML('dataList', $this->dataList->getXML());
     // store the field names being displayed
     $fieldNames = explode(',', FormProcessor_LanguageList::DISPLAY_FIELDS);
     $this->template->set('dataFieldList', $fieldNames);
     /*
      * Add any additional data required by the template here
      */
     //        $languageList = new LanguageList();
     //        $languageArray = $languageList->getDropListArray( $this->labels );
     //        $this->template->set( 'list_viewerLanguage_id', $languageArray);
     //        $this->template->set( 'list_language_id', $languageArray );
     $templateName = 'siteAdminBox.php';
     // if you are creating a custom template for this page then
     // replace $templateName with the following:
     //$templateName = 'page_LanguageList.php';
     return $this->template->fetch($templateName);
 }
 /**
  * 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;
     $this->template = new Template($path);
     // store any additional values to template
     $this->template->set('formAction', $this->formAction);
     // store the page labels in XML format...
     // NOTE: use this location to update any label tags ...
     // $name = $user->getName();
     // $this->labels->setLabelTag( '[Title]', '[userName]', $name);
     $this->template->setXML('pageLabels', $this->labels->getLabelXML());
     // store all the fields to the template
     $this->setFormFieldsToTemplate();
     /*
      * Form related Template variables:
      */
     // save the list of form fields
     $this->template->set('formFieldList', $this->formFields);
     // store the field types being displayed
     $fieldTypes = explode(',', FormProcessor_AddViewer::FORM_FIELD_TYPES);
     $this->template->set('formFieldType', $fieldTypes);
     // store the button label
     $this->template->set('buttonText', $this->labels->getLabel('[Add]'));
     /*
      * Add any additional data required by the template here
      */
     $languageManager = new RowManager_LanguageManager();
     $seriesKey = moduleAccountAdmin::MULTILINGUAL_SERIES_KEY;
     $pageKey = RowManager_LanguageManager::XML_NODE_NAME;
     $bridgeMultiLingualManager = new MultilingualManager($this->viewer->getLanguageID(), $seriesKey, $pageKey);
     $bridgeManager = new LanguageLabelBridge($languageManager, $bridgeMultiLingualManager);
     $languageList = $bridgeManager->getListIterator();
     $languageArray = $languageList->getDropListArray();
     $this->template->set('list_language_id', $languageArray);
     // uncomment this line if you are creating a template for this page
     //$templateName = 'page_AddViewer.php';
     // otherwise use the generic admin box template
     $templateName = 'siteFormSingle.php';
     return $this->template->fetch($templateName);
 }
 /**
  * function getHTML
  * <pre>
  * This method returns the HTML data generated by this object.
  * </pre>
  * @return [STRING] HTML Display data.
  */
 function getHTML()
 {
     // Make a new Template object
     $path = SITE_PATH_TEMPLATES;
     // Replace $path with the following line if you want to create a
     // template tailored for this page:
     //$path = $this->pathModuleRoot.'templates/';
     $this->template = new Template($path);
     // store the Row Manager's XML Node Name
     $this->template->set('rowManagerXMLNodeName', RowManager_ViewerManager::XML_NODE_NAME);
     // store the field names being displayed
     $fieldNames = explode(',', page_AccountList::DISPLAY_FIELDS);
     $this->template->set('dataFieldList', $fieldNames);
     // store the primary key field name for the data being displayed
     $this->template->set('primaryKeyFieldName', 'viewer_id');
     // store the link values
     // $this->linkValues[ 'view' ] = 'add/new/href/data/here';
     $this->template->set('linkValues', $this->linkValues);
     // store the link labels
     $this->linkLabels['add'] = $this->labels->getLabel('[Add]');
     $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';
     $this->template->set('linkLabels', $this->linkLabels);
     // store any additional link Columns
     // example:
     $title = $this->labels->getLabel('[title_passWord]');
     $columnLabel = $this->labels->getLabel('[change]');
     $link = $this->linkValues['passWord'];
     $fieldName = 'viewer_id';
     $this->addLinkColumn($title, $columnLabel, $link, $fieldName);
     $title = $this->labels->getLabel('[title_access]');
     $columnLabel = $this->labels->getLabel('[change]');
     $link = $this->linkValues['accessLink'];
     $fieldName = 'viewer_id';
     $this->addLinkColumn($title, $columnLabel, $link, $fieldName);
     $this->template->set('linkColumns', $this->linkColumns);
     // store the page labels
     // NOTE: use this location to update any label tags ...
     // example:
     // $name = $user->getName();
     // $this->labels->setLabelTag( '[Title]', '[userName]', $name);
     $this->template->setXML('pageLabels', $this->labels->getLabelXML());
     // store XML List of Applicants ...
     $this->template->setXML('dataList', $this->listManager->getXML());
     /*
      *  Set up any additional data transfer to the Template here...
      */
     // NOTE: Here we tell the templat to NOT display the Title & Instr
     // fields.  So we can display them in our own template later on...
     $this->template->set('disableHeading', true);
     // store language list for display
     //$languageList = new LanguageList();
     $languageManager = new RowManager_LanguageManager();
     $seriesKey = moduleAccountAdmin::MULTILINGUAL_SERIES_KEY;
     $pageKey = $languageManager->getXMLNodeName();
     $multiLingualManager = new MultilingualManager($this->viewer->getLanguageID(), $seriesKey, $pageKey);
     $bridgeManager = new LanguageLabelBridge($languageManager, $multiLingualManager);
     $languageList = $bridgeManager->getListIterator();
     $languageArray = $languageList->getDropListArray();
     $this->template->set('list_language_id', $languageArray);
     $isActiveList = array();
     $isActiveList['1'] = $this->labels->getLabel('[yes]');
     $isActiveList['0'] = '&nbsp;';
     //$this->labels->getLabel( '[no]' );
     $this->template->set('list_viewer_isActive', $isActiveList);
     $templateName = 'siteDataList.php';
     // if you are creating a custom template for this page then
     // replace $templateName with the following:
     //$templateName = 'page_AccountList.php';
     $pageAccountList = $this->template->fetch($templateName);
     // Now create an instance of the page_AccountList template
     // and add the account List to it.
     $path = $this->pathModuleRoot . 'templates/';
     $template = new Template($path);
     $template->setXML('pageLabels', $this->labels->getLabelXML());
     $template->set('pageContent', $pageAccountList);
     // now add the data for the Account Group JumpList
     $groupMgr = new RowManager_AccountGroupManager();
     $seriesKey = moduleAccountAdmin::MULTILINGUAL_SERIES_KEY;
     $pageKey = $groupMgr->getXMLNodeName();
     $groupMultiLingualManager = new MultilingualManager($this->viewer->getLanguageID(), $seriesKey, $pageKey);
     $bridgeManager = new RowLabelBridge($groupMgr, $groupMultiLingualManager);
     $groupList = $bridgeManager->getListIterator();
     $jumpLink = $this->linkValues['jumpLink'];
     $list = $groupList->getDropListArray(null, $jumpLink);
     $template->set('jumpList', $list);
     $template->set('accountGroup', $jumpLink . $this->accountgroup_id);
     // return template data.
     $templateName = 'page_AccountList.php';
     return $template->fetch($templateName);
 }