2011-10-11 13:02:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-06-12 18:42:45 +00:00
|
|
|
* @package PatchTester
|
|
|
|
* @copyright Copyright (C) 2011 Ian MacLennan, Inc. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
2011-10-11 13:02:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PatchTester Controller
|
|
|
|
*
|
2012-06-12 18:42:45 +00:00
|
|
|
* @package PatchTester
|
2011-10-11 13:02:57 +00:00
|
|
|
*/
|
2012-09-09 01:53:44 +00:00
|
|
|
class PatchTesterController extends JControllerLegacy
|
2011-10-11 13:02:57 +00:00
|
|
|
{
|
|
|
|
protected $default_view = 'Pulls';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to display a view.
|
|
|
|
*
|
2012-06-12 18:42:45 +00:00
|
|
|
* @param boolean $cachable If true, the view output will be cached
|
|
|
|
* @param array $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
|
2011-10-11 13:02:57 +00:00
|
|
|
*
|
2012-06-12 18:42:45 +00:00
|
|
|
* @return JController This object to support chaining.
|
|
|
|
* @since 1.5
|
2011-10-11 13:02:57 +00:00
|
|
|
*/
|
|
|
|
public function display($cachable = false, $urlparams = false)
|
|
|
|
{
|
|
|
|
parent::display();
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|