mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 07:11:03 +00:00
36 lines
828 B
PHP
36 lines
828 B
PHP
<?php
|
|
/**
|
|
* @package PatchTester
|
|
* @copyright Copyright (C) 2011 Ian MacLennan, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
// No direct access
|
|
defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* PatchTester Controller
|
|
*
|
|
* @package PatchTester
|
|
*/
|
|
class PatchTesterController extends JController
|
|
{
|
|
protected $default_view = 'Pulls';
|
|
|
|
/**
|
|
* Method to display a view.
|
|
*
|
|
* @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()}.
|
|
*
|
|
* @return JController This object to support chaining.
|
|
* @since 1.5
|
|
*/
|
|
public function display($cachable = false, $urlparams = false)
|
|
{
|
|
parent::display();
|
|
|
|
return $this;
|
|
}
|
|
}
|