| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_akeeba/views/profiles/ |
Upload File : |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2006-2011 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id: view.html.php 415 2011-01-26 15:15:41Z nikosdion $
* @since 1.3
*/
// Protect from unauthorized access
defined('_JEXEC') or die('Restricted Access');
// Load framework base classes
jimport('joomla.application.component.view');
/**
* MVC View for Profiles management
*
*/
class AkeebaViewProfiles extends JView
{
function display($tpl = null)
{
// Decide what to do; delegate data loading to private methods
$task = JRequest::getCmd('task','display');
$layout = JRequest::getCmd('layout','default');
switch($layout)
{
case 'default_edit':
switch($task)
{
case 'add':
JToolBarHelper::title(JText::_('AKEEBA').': <small>'.JText::_('PROFILE_PAGETITLE_NEW').'</small>','akeeba');
$this->_add();
break;
case 'edit':
JToolBarHelper::title(JText::_('AKEEBA').': <small>'.JText::_('PROFILE_PAGETITLE_EDIT').'</small>','akeeba');
$this->_edit();
break;
}
break;
default:
switch($task)
{
default:
$this->_default();
break;
}
JToolBarHelper::title(JText::_('AKEEBA').': <small>'.JText::_('PROFILES').'</small>','akeeba');
break;
}
// Load the util helper
$this->loadHelper('utils');
// Add a spacer, a help button and show the template
JToolBarHelper::spacer();
AkeebaHelperIncludes::includeMedia(false);
// Add live help
AkeebaHelperIncludes::addHelp();
parent::display($tpl);
}
/**
* The default layout, shows a list of profiles
*
*/
function _default()
{
// Get reference to profiles model
$model =& $this->getModel('profiles');
// Load list of profiles
$profiles = $model->getProfilesList();
$this->assign('profiles', $profiles);
// Add toolbar buttons
if(AKEEBA_JVERSION == '15') {
JToolBarHelper::back('Back', 'index.php?option='.JRequest::getCmd('option'));
} else {
JToolBarHelper::back('JTOOLBAR_BACK', 'index.php?option='.JRequest::getCmd('option'));
}
JToolBarHelper::spacer();
JToolBarHelper::addNew();
JToolBarHelper::custom('copy', 'copy.png', 'copy_f2.png', 'Copy', false);
JToolBarHelper::spacer();
JToolBarHelper::deleteList();
JToolBarHelper::spacer();
}
/**
* The edit layout on an edit task, lets the user edit an existing record
*
*/
function _edit()
{
// Load data for Edit, using model
$model =& $this->getModel();
$profile =& $model->getProfile();
// Assign data to template
$this->assignRef('profile', $profile);
// Add toolbar buttons
JToolBarHelper::save();
JToolBarHelper::apply();
JToolBarHelper::cancel();
}
/**
* The edit layout on an add task, lets the user add a new record
*
*/
function _add()
{
// Load data for Add New
require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'tables'.DS.'profile.php');
$model =& $this->getModel();
$db =& JFactory::getDBO();
$profile = new TableProfile($db);
// Add toolbar buttons
JToolBarHelper::save();
JToolBarHelper::cancel();
}
}