addToolBar(); $cid = VikRequest::getVar('cid', array(0)); $dbo = JFactory::getDBO(); $q = "SELECT * FROM `#__vikbooking_countries` ORDER BY `#__vikbooking_countries`.`country_name` ASC;"; $dbo->setQuery($q); $countries = $dbo->loadAssocList(); $this->cid = $cid; $this->countries = $countries; // Display the template parent::display($tpl); } /** * Sets the toolbar */ protected function addToolBar() { JToolBarHelper::title(JText::translate('VBMAINEXPCUSTOMERSTITLE'), 'vikbooking'); JToolBarHelper::custom('exportcustomerslaunch', 'download', 'download', JText::translate('VBOCSVEXPCUSTOMERSGET'), false); JToolBarHelper::spacer(); JToolBarHelper::cancel( 'cancelcustomer', JText::translate('VBBACK')); JToolBarHelper::spacer(); } }