78 lines
1.6 KiB
PHP
78 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_templates
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
/**
|
|
* View to edit a template style.
|
|
*
|
|
* @package Joomla.Administrator
|
|
* @subpackage com_templates
|
|
* @since 1.6
|
|
*/
|
|
class TemplatesViewSource extends JViewLegacy
|
|
{
|
|
protected $form;
|
|
|
|
protected $ftp;
|
|
|
|
protected $source;
|
|
|
|
protected $state;
|
|
|
|
protected $template;
|
|
|
|
/**
|
|
* Display the view
|
|
*/
|
|
public function display($tpl = null)
|
|
{
|
|
$this->form = $this->get('Form');
|
|
$this->ftp = JClientHelper::setCredentialsFromRequest('ftp');
|
|
$this->source = $this->get('Source');
|
|
$this->state = $this->get('State');
|
|
$this->template = $this->get('Template');
|
|
|
|
// Check for errors.
|
|
if (count($errors = $this->get('Errors')))
|
|
{
|
|
JError::raiseError(500, implode("\n", $errors));
|
|
return false;
|
|
}
|
|
|
|
$this->addToolbar();
|
|
parent::display($tpl);
|
|
}
|
|
|
|
/**
|
|
* Add the page title and toolbar.
|
|
*
|
|
* @since 1.6
|
|
*/
|
|
protected function addToolbar()
|
|
{
|
|
JFactory::getApplication()->input->set('hidemainmenu', true);
|
|
|
|
$canDo = TemplatesHelper::getActions();
|
|
|
|
JToolbarHelper::title(JText::_('COM_TEMPLATES_MANAGER_EDIT_FILE'), 'thememanager');
|
|
|
|
// Can save the item.
|
|
if ($canDo->get('core.edit'))
|
|
{
|
|
JToolbarHelper::apply('source.apply');
|
|
JToolbarHelper::save('source.save');
|
|
}
|
|
|
|
JToolbarHelper::cancel('source.cancel');
|
|
JToolbarHelper::divider();
|
|
JToolbarHelper::help('JHELP_EXTENSIONS_TEMPLATE_MANAGER_TEMPLATES_EDIT_SOURCE');
|
|
}
|
|
}
|