setTitle(JText::_('JOOMFISH_TITLE') . ' :: ' .JText::_('HELP AND HOWTO')); // Set toolbar items for the page JToolBarHelper::title( JText::_( 'HELP AND HOWTO' ), 'help' ); JToolBarHelper::custom( 'cpanel.show', 'joomfish', 'joomfish', 'CONTROL PANEL' , false ); JSubMenuHelper::addEntry(JText::_('Control Panel'), 'index2.php?option=com_joomfish'); JSubMenuHelper::addEntry(JText::_('Translation'), 'index2.php?option=com_joomfish&task=translate.overview'); JSubMenuHelper::addEntry(JText::_('Orphans'), 'index2.php?option=com_joomfish&task=translate.orphans'); JSubMenuHelper::addEntry(JText::_('Manage Translations'), 'index2.php?option=com_joomfish&task=manage.overview', false); JSubMenuHelper::addEntry(JText::_('Statistics'), 'index2.php?option=com_joomfish&task=statistics.overview', false); JSubMenuHelper::addEntry(JText::_('Language Configuration'), 'index2.php?option=com_joomfish&task=languages.show', false); JSubMenuHelper::addEntry(JText::_('Content elements'), 'index2.php?option=com_joomfish&task=elements.show', false); JSubMenuHelper::addEntry(JText::_('HELP AND HOWTO'), 'index2.php?option=com_joomfish&task=help.show', true); $layout = $this->getLayout(); if (method_exists($this,$layout)){ $this->$layout($tpl); } parent::display($tpl); } /** * Method to show the information related to the project * @access public * @return void */ function information($tpl=null) { $document = JRequest::getVar('fileCode',''); $this->assignRef('fileCode', $document); } /** * Show the side menu * */ function _sideMenu() { ?> <?php echo JText::_('Language Title');?>

:

:

:

:

:

Present development team:


Logo design by:  
Special thank's for testing, good suggestions & translations to:
Bernhard, Michael, Luc, Olivier, Robin, Rune, Victor, Akarawuth
 
Contact:
Joom!Fish Forum
 
Version:
getVersion();?>
 
Copyright:
getCopyright() ?> Think Network, Munich
Revision: getRevision() ?>
Open Source License.

_output = null; $file = $this->_layout; // clean the file name $file = preg_replace('/[^A-Z0-9_\.-]/i', '', $file); // Get Help URL jimport('joomla.language.help'); $filetofind = JHelp::createURL($file, true); $this->_template = JPath::find(JPATH_ADMINISTRATOR, $filetofind); if ($this->_template != false) { // unset so as not to introduce into template scope unset($tpl); unset($file); // never allow a 'this' property if (isset($this->this)) { unset($this->this); } // start capturing output into a buffer ob_start(); // include the requested template filename in the local scope // (this will execute the view logic). include $this->_template; // done with the requested template; get the buffer and // clear it. $this->_output = ob_get_contents(); ob_end_clean(); return $this->_output; } else { return parent::loadTemplate($tpl); } } }