31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-20 08:49:02 +00:00
patchtester/administrator/components/com_patchtester/controller.php

27 lines
529 B
PHP
Raw Normal View History

2011-10-11 13:02:57 +00:00
<?php
/**
2013-07-13 02:26:21 +00:00
* @package PatchTester
*
2014-01-03 02:48:28 +00:00
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2014 Open Source Matters, Inc. All rights reserved.
2013-07-13 02:26:21 +00:00
* @license GNU General Public License version 2 or later
2011-10-11 13:02:57 +00:00
*/
defined('_JEXEC') or die;
/**
* PatchTester Controller
*
2012-06-12 18:42:45 +00:00
* @package PatchTester
2013-07-13 02:26:21 +00:00
* @since 1.0
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
{
/**
2013-07-13 02:26:21 +00:00
* The default view for the display method.
2011-10-11 13:02:57 +00:00
*
2013-07-13 02:26:21 +00:00
* @var string
* @since 1.0
2011-10-11 13:02:57 +00:00
*/
2013-07-13 02:26:21 +00:00
protected $default_view = 'pulls';
2011-10-11 13:02:57 +00:00
}