31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-05 06:50:48 +00:00
patchtester/administrator/components/com_patchtester/controller.php

36 lines
890 B
PHP
Raw Normal View History

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
*/
class PatchTesterController extends JController
{
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;
}
}