/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

  1. <?php
  2. /**
  3. * @copyright Copyright (C) 2006-2014 joomleague.at. All rights reserved.
  4. * @license GNU/GPL,see LICENSE.php
  5. * Joomla! is free software. This version may have been modified pursuant
  6. * to the GNU General Public License,and as distributed it includes or
  7. * is derivative of works licensed under the GNU General Public License or
  8. * other free or open source software licenses.
  9. * See COPYRIGHT.php for copyright notices and details.
  10. */
  11. // Check to ensure this file is included in Joomla!
  12. defined('_JEXEC') or die('Restricted access');
  13. jimport('joomla.application.component.controller');
  14. require_once JPATH_COMPONENT.DS.'controllers'.DS.'results.php';
  15. require_once JPATH_COMPONENT.DS.'controllers'.DS.'ranking.php';
  16. class JoomleagueControllerResultsRanking extends JoomleagueController
  17. {
  18. public function display($cachable = false, $urlparams = false)
  19. {
  20. $this->showprojectheading();
  21. JoomleagueControllerResults::showResults( );
  22. JoomleagueControllerRanking::showRanking( );
  23. $this->showbackbutton();
  24. $this->showfooter();
  25. }
  26. }
  27. ?>