File: /home/confeduphaar/backip-old-files/administrator/components/com_jdprofiler/controllers/team.php
<?php
/**
*
* @package Com_Jdprofiler
* @author Joomdev
* @copyright Copyright (C) 2018 Joomdev, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// No direct access
defined('_JEXEC') or die;
jimport('joomla.application.component.controllerform');
/**
* Team controller class.
*
* @since 1.6
*/
class JdprofilerControllerTeam extends JControllerForm
{
/**
* Constructor
*
* @throws Exception
*/
public function __construct()
{
$this->view_list = 'teams';
parent::__construct();
}
}