/com_joomleague/components/com_joomleague/controllers/resultsranking.php
https://gitlab.com/volleyuisp/joomleague · PHP · 32 lines · 17 code · 5 blank · 10 comment · 0 complexity · b190acf03475f9c13da4909f003ef5b9 MD5 · raw file
- <?php
- /**
- * @copyright Copyright (C) 2006-2014 joomleague.at. All rights reserved.
- * @license GNU/GPL,see LICENSE.php
- * Joomla! is free software. This version may have been modified pursuant
- * to the GNU General Public License,and as distributed it includes or
- * is derivative of works licensed under the GNU General Public License or
- * other free or open source software licenses.
- * See COPYRIGHT.php for copyright notices and details.
- */
- // Check to ensure this file is included in Joomla!
- defined('_JEXEC') or die('Restricted access');
- jimport('joomla.application.component.controller');
- require_once JPATH_COMPONENT.DS.'controllers'.DS.'results.php';
- require_once JPATH_COMPONENT.DS.'controllers'.DS.'ranking.php';
- class JoomleagueControllerResultsRanking extends JoomleagueController
- {
- public function display($cachable = false, $urlparams = false)
- {
- $this->showprojectheading();
- JoomleagueControllerResults::showResults( );
- JoomleagueControllerRanking::showRanking( );
- $this->showbackbutton();
- $this->showfooter();
- }
- }
- ?>