Files
@ 9264662acc93
Branch filter:
Location: hot67beta/administrator/components/com_templates/controller.php
9264662acc93
16.6 KiB
text/x-php
header more stuff
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | <?php
/**
* @version $Id: controller.php 10836 2008-08-28 10:56:44Z eddieajau $
* @package Joomla
* @subpackage Templates
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant to the
* GNU General Public License, and as distributed it includes or is derivative
* of works licensed under the GNU General Public License or other free or open
* source software licenses. See COPYRIGHT.php for copyright notices and
* details.
*/
/**
* @package Joomla
* @subpackage Templates
*/
class TemplatesController
{
/**
* Compiles a list of installed, version 4.5+ templates
*
* Based on xml files found. If no xml file found the template
* is ignored
*/
function viewTemplates()
{
global $mainframe, $option;
// Initialize some variables
$db =& JFactory::getDBO();
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
// Initialize the pagination variables
$limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int');
$limitstart = $mainframe->getUserStateFromRequest($option.'.'.$client->id.'.limitstart', 'limitstart', 0, 'int');
$select[] = JHTML::_('select.option', '0', JText::_('Site'));
$select[] = JHTML::_('select.option', '1', JText::_('Administrator'));
$lists['client'] = JHTML::_('select.genericlist', $select, 'client', 'class="inputbox" size="1" onchange="document.adminForm.submit();"', 'value', 'text', $client->id);
$tBaseDir = $client->path.DS.'templates';
//get template xml file info
$rows = array();
$rows = TemplatesHelper::parseXMLTemplateFiles($tBaseDir);
// set dynamic template information
for($i = 0; $i < count($rows); $i++) {
$rows[$i]->assigned = TemplatesHelper::isTemplateAssigned($rows[$i]->directory);
$rows[$i]->published = TemplatesHelper::isTemplateDefault($rows[$i]->directory, $client->id);
}
jimport('joomla.html.pagination');
$page = new JPagination(count($rows), $limitstart, $limit);
$rows = array_slice($rows, $page->limitstart, $page->limit);
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::showTemplates($rows, $lists, $page, $option, $client);
}
/**
* Show the template with module position in an iframe
*/
function previewTemplate()
{
$template = JRequest::getVar('id', '', 'method', 'cmd');
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
if (!$template)
{
return JError::raiseWarning( 500, JText::_('Template not specified') );
}
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::previewTemplate($template, true, $client, $option);
}
/**
* Publish, or make current, the selected template
*/
function publishTemplate()
{
global $mainframe;
// Check for request forgeries
JRequest::checkToken() or jexit( 'Invalid Token' );
// Initialize some variables
$db = & JFactory::getDBO();
$cid = JRequest::getVar('cid', array(), 'method', 'array');
$cid = array(JFilterInput::clean(@$cid[0], 'cmd'));
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
if ($cid[0])
{
$query = 'DELETE FROM #__templates_menu' .
' WHERE client_id = '.(int) $client->id .
' AND (menuid = 0 OR template = '.$db->Quote($cid[0]).')';
$db->setQuery($query);
$db->query();
$query = 'INSERT INTO #__templates_menu' .
' SET client_id = '.(int) $client->id .', template = '.$db->Quote($cid[0]).', menuid = 0';
$db->setQuery($query);
$db->query();
}
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id);
}
function editTemplate()
{
jimport('joomla.filesystem.path');
// Initialize some variables
$db = & JFactory::getDBO();
$cid = JRequest::getVar('cid', array(), 'method', 'array');
$cid = array(JFilterInput::clean(@$cid[0], 'cmd'));
$template = $cid[0];
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
if (!$cid[0]) {
return JError::raiseWarning( 500, JText::_('Template not specified') );
}
$tBaseDir = JPath::clean($client->path.DS.'templates');
if (!is_dir( $tBaseDir . DS . $template )) {
return JError::raiseWarning( 500, JText::_('Template not found') );
}
$lang =& JFactory::getLanguage();
$lang->load( 'tpl_'.$template, JPATH_ADMINISTRATOR );
$ini = $client->path.DS.'templates'.DS.$template.DS.'params.ini';
$xml = $client->path.DS.'templates'.DS.$template.DS.'templateDetails.xml';
$row = TemplatesHelper::parseXMLTemplateFile($tBaseDir, $template);
jimport('joomla.filesystem.file');
// Read the ini file
if (JFile::exists($ini)) {
$content = JFile::read($ini);
} else {
$content = null;
}
$params = new JParameter($content, $xml, 'template');
$assigned = TemplatesHelper::isTemplateAssigned($row->directory);
$default = TemplatesHelper::isTemplateDefault($row->directory, $client->id);
if($client->id == '1') {
$lists['selections'] = JText::_('Cannot assign an administrator template');
} else {
$lists['selections'] = TemplatesHelper::createMenuList($template);
}
if ($default) {
$row->pages = 'all';
} elseif (!$assigned) {
$row->pages = 'none';
} else {
$row->pages = null;
}
// Set FTP credentials, if given
jimport('joomla.client.helper');
$ftp =& JClientHelper::setCredentialsFromRequest('ftp');
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::editTemplate($row, $lists, $params, $option, $client, $ftp, $template);
}
function saveTemplate()
{
global $mainframe;
// Check for request forgeries
JRequest::checkToken() or jexit( 'Invalid Token' );
// Initialize some variables
$db = & JFactory::getDBO();
$template = JRequest::getVar('id', '', 'method', 'cmd');
$option = JRequest::getVar('option', '', '', 'cmd');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
$menus = JRequest::getVar('selections', array(), 'post', 'array');
$params = JRequest::getVar('params', array(), 'post', 'array');
$default = JRequest::getBool('default');
JArrayHelper::toInteger($menus);
if (!$template) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::_('No template specified.'));
}
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
$ftp = JClientHelper::getCredentials('ftp');
$file = $client->path.DS.'templates'.DS.$template.DS.'params.ini';
jimport('joomla.filesystem.file');
if (JFile::exists($file) && count($params))
{
$registry = new JRegistry();
$registry->loadArray($params);
$txt = $registry->toString();
// Try to make the params file writeable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0755')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the template parameter file writable'));
}
$return = JFile::write($file, $txt);
// Try to make the params file unwriteable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0555')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the template parameter file unwritable'));
}
if (!$return) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::sprintf('Failed to open file for writing.', $file));
}
}
// Reset all existing assignments
$query = 'DELETE FROM #__templates_menu' .
' WHERE client_id = 0' .
' AND template = '.$db->Quote( $template );
$db->setQuery($query);
$db->query();
if ($default) {
$menus = array( 0 );
}
foreach ($menus as $menuid)
{
// If 'None' is not in array
if ((int) $menuid >= 0)
{
// check if there is already a template assigned to this menu item
$query = 'DELETE FROM #__templates_menu' .
' WHERE client_id = 0' .
' AND menuid = '.(int) $menuid;
$db->setQuery($query);
$db->query();
$query = 'INSERT INTO #__templates_menu' .
' SET client_id = 0, template = '. $db->Quote( $template ) .', menuid = '.(int) $menuid;
$db->setQuery($query);
$db->query();
}
}
$task = JRequest::getCmd('task');
if($task == 'apply') {
$mainframe->redirect('index.php?option='.$option.'&task=edit&cid[]='.$template.'&client='.$client->id);
} else {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id);
}
}
function cancelTemplate()
{
global $mainframe;
// Initialize some variables
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id);
}
function editTemplateSource()
{
global $mainframe;
// Initialize some variables
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
$template = JRequest::getVar('id', '', 'method', 'cmd');
$file = $client->path.DS.'templates'.DS.$template.DS.'index.php';
// Read the source file
jimport('joomla.filesystem.file');
$content = JFile::read($file);
if ($content !== false)
{
// Set FTP credentials, if given
jimport('joomla.client.helper');
$ftp =& JClientHelper::setCredentialsFromRequest('ftp');
$content = htmlspecialchars($content, ENT_COMPAT, 'UTF-8');
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::editTemplateSource($template, $content, $option, $client, $ftp);
} else {
$msg = JText::sprintf('Operation Failed Could not open', $file);
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, $msg);
}
}
function saveTemplateSource()
{
global $mainframe;
// Check for request forgeries
JRequest::checkToken() or jexit( 'Invalid Token' );
// Initialize some variables
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
$template = JRequest::getVar('id', '', 'method', 'cmd');
$filecontent = JRequest::getVar('filecontent', '', 'post', 'string', JREQUEST_ALLOWRAW);
if (!$template) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::_('No template specified.'));
}
if (!$filecontent) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::_('Content empty.'));
}
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
$ftp = JClientHelper::getCredentials('ftp');
$file = $client->path.DS.'templates'.DS.$template.DS.'index.php';
// Try to make the template file writeable
if (!$ftp['enabled'] && !JPath::setPermissions($file, '0755')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the template file writable'));
}
jimport('joomla.filesystem.file');
$return = JFile::write($file, $filecontent);
// Try to make the template file unwriteable
if (!$ftp['enabled'] && !JPath::setPermissions($file, '0555')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the template file unwritable'));
}
if ($return)
{
$task = JRequest::getCmd('task');
switch($task)
{
case 'apply_source':
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&task=edit_source&id='.$template, JText::_('Template source saved'));
break;
case 'save_source':
default:
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&task=edit&cid[]='.$template, JText::_('Template source saved'));
break;
}
}
else {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::sprintf('Failed to open file for writing.', $file));
}
}
function chooseTemplateCSS()
{
global $mainframe;
// Initialize some variables
$option = JRequest::getCmd('option');
$template = JRequest::getVar('id', '', 'method', 'cmd');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
// Determine template CSS directory
$dir = $client->path.DS.'templates'.DS.$template.DS.'css';
// List template .css files
jimport('joomla.filesystem.folder');
$files = JFolder::files($dir, '\.css$', false, false);
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::chooseCSSFiles($template, $dir, $files, $option, $client);
}
function editTemplateCSS()
{
global $mainframe;
// Initialize some variables
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
$template = JRequest::getVar('id', '', 'method', 'cmd');
$filename = JRequest::getVar('filename', '', 'method', 'cmd');
jimport('joomla.filesystem.file');
if (JFile::getExt($filename) !== 'css') {
$msg = JText::_('Wrong file type given, only CSS files can be edited.');
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&task=choose_css&id='.$template, $msg, 'error');
}
$content = JFile::read($client->path.DS.'templates'.DS.$template.DS.'css'.DS.$filename);
if ($content !== false)
{
// Set FTP credentials, if given
jimport('joomla.client.helper');
$ftp =& JClientHelper::setCredentialsFromRequest('ftp');
$content = htmlspecialchars($content, ENT_COMPAT, 'UTF-8');
require_once (JPATH_COMPONENT.DS.'admin.templates.html.php');
TemplatesView::editCSSSource($template, $filename, $content, $option, $client, $ftp);
}
else
{
$msg = JText::sprintf('Operation Failed Could not open', $client->path.$filename);
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, $msg);
}
}
function saveTemplateCSS()
{
global $mainframe;
// Check for request forgeries
JRequest::checkToken() or jexit( 'Invalid Token' );
// Initialize some variables
$option = JRequest::getCmd('option');
$client =& JApplicationHelper::getClientInfo(JRequest::getVar('client', '0', '', 'int'));
$template = JRequest::getVar('id', '', 'post', 'cmd');
$filename = JRequest::getVar('filename', '', 'post', 'cmd');
$filecontent = JRequest::getVar('filecontent', '', 'post', 'string', JREQUEST_ALLOWRAW);
if (!$template) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::_('No template specified.'));
}
if (!$filecontent) {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id, JText::_('Operation Failed').': '.JText::_('Content empty.'));
}
// Set FTP credentials, if given
jimport('joomla.client.helper');
JClientHelper::setCredentialsFromRequest('ftp');
$ftp = JClientHelper::getCredentials('ftp');
$file = $client->path.DS.'templates'.DS.$template.DS.'css'.DS.$filename;
// Try to make the css file writeable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0755')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the css file writable'));
}
jimport('joomla.filesystem.file');
$return = JFile::write($file, $filecontent);
// Try to make the css file unwriteable
if (!$ftp['enabled'] && JPath::isOwner($file) && !JPath::setPermissions($file, '0555')) {
JError::raiseNotice('SOME_ERROR_CODE', JText::_('Could not make the css file unwritable'));
}
if ($return)
{
$task = JRequest::getCmd('task');
switch($task)
{
case 'apply_css':
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&task=edit_css&id='.$template.'&filename='.$filename, JText::_('File Saved'));
break;
case 'save_css':
default:
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&task=edit&cid[]='.$template, JText::_('File Saved'));
break;
}
}
else {
$mainframe->redirect('index.php?option='.$option.'&client='.$client->id.'&id='.$template.'&task=choose_css', JText::_('Operation Failed').': '.JText::sprintf('Failed to open file for writing.', $file));
}
}
}
|