registerTask( 'show', 'display' ); } /** * Standard display control structure * */ function display( ) { // test if any plugins are installed - if not divert to installation screen $db =& JFactory::getDBO(); $query = 'SELECT COUNT(*)' . ' FROM #__plugins AS p' . ' WHERE p.folder = '.$db->Quote("joomfish"); ; $db->setQuery( $query ); $total = $db->loadResult(); if ($total>0){ $link = 'index2.php?option=com_plugins&filter_type=joomfish'; $msg = ""; } else { $link = 'index.php?option=com_installer'; $msg = JText::_("No Joomfish plugins installed yet"); } $this->setRedirect($link, $msg); } }