| Current Path : /home/sunflowe/www2/j15/administrator/components/com_akeeba/views/dbef/ |
| Current File : /home/sunflowe/www2/j15/administrator/components/com_akeeba/views/dbef/view.html.php |
<?php
/**
* @package AkeebaBackup
* @copyright Copyright (c)2009-2012 Nicholas K. Dionysopoulos
* @license GNU General Public License version 3, or later
* @version $Id$
* @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 Database Table filters
*
*/
class AkeebaViewDbef extends JView
{
function display()
{
$task = JRequest::getCmd('task','normal');
// Add toolbar buttons
JToolBarHelper::title(JText::_('AKEEBA').': <small>'.JText::_('DBEF').'</small>','akeeba');
JToolBarHelper::back('AKEEBA_CONTROLPANEL', 'index.php?option='.JRequest::getCmd('option'));
// Add custom submenus
JSubMenuHelper::addEntry(
JText::_('FILTERS_LABEL_NORMALVIEW'),
JURI::base().'index.php?option=com_akeeba&view='.JRequest::getCmd('view').'&task=normal',
($task == 'normal')
);
JSubMenuHelper::addEntry(
JText::_('FILTERS_LABEL_TABULARVIEW'),
JURI::base().'index.php?option=com_akeeba&view='.JRequest::getCmd('view').'&task=tabular',
($task == 'tabular')
);
// Add references to scripts and CSS
AkeebaHelperIncludes::includeMedia(false);
$media_folder = JURI::base().'../media/com_akeeba/';
// Get the root URI for media files
$this->assign( 'mediadir', AkeebaHelperEscape::escapeJS($media_folder.'theme/') );
// Get a JSON representation of the available roots
$model = $this->getModel();
$root_info = $model->get_roots();
$roots = array();
if(!empty($root_info))
{
// Loop all dir definitions
foreach($root_info as $def)
{
$roots[] = $def->value;
$options[] = JHTML::_('select.option', $def->value, $def->text );
}
}
$site_root = '[SITEDB]';
$attribs = 'onchange="akeeba_active_root_changed();"';
$this->assign('root_select', JHTML::_('select.genericlist', $options, 'root', $attribs, 'value', 'text', $site_root, 'active_root') );
$this->assign('roots', $roots);
switch($task)
{
case 'normal':
default:
$tpl = null;
// Get a JSON representation of the database data
$model = $this->getModel();
$json = json_encode($model->make_listing($site_root));
$this->assignRef( 'json', $json );
break;
case 'tabular':
$tpl = 'tab';
// Get a JSON representation of the tabular filter data
$model = $this->getModel();
$json = json_encode( $model->get_filters($site_root) );
$this->assignRef( 'json', $json );
break;
}
// Add live help
AkeebaHelperIncludes::addHelp();
// Get profile ID
$profileid = AEPlatform::getInstance()->get_active_profile();
$this->assign('profileid', $profileid);
// Get profile name
if(!class_exists('AkeebaModelProfiles')) JLoader::import('models.profiles', JPATH_COMPONENT_ADMINISTRATOR);
$model = new AkeebaModelProfiles();
$model->setId($profileid);
$profile_data = $model->getProfile();
$this->assign('profilename', $profile_data->description);
parent::display($tpl);
}
}