Your IP : 216.73.216.240
<?php
/*
* @package Joomla.Framework
* @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*
* @component Phoca Component
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License version 2 or later;
*/
defined('_JEXEC') or die();
jimport('joomla.application.component.controllerform');
jimport('joomla.client.helper');
class PhocaGalleryCpControllerPhocaGalleryT extends JControllerForm
{
protected $option = 'com_phocagallery';
function __construct() {
parent::__construct();
$this->registerTask( 'themeinstall' , 'themeinstall' );
$this->registerTask( 'bgimagesmall' , 'bgimagesmall' );
$this->registerTask( 'bgimagemedium' , 'bgimagemedium' );
$this->registerTask( 'displayeditcss' , 'displayeditcss' );
}
function displayeditcss() {
JSession::checkToken() or jexit(JText::_('JINVALID_TOKEN'));
$fileid = $this->input->get('fileid');
$fileid = urldecode(base64_decode($fileid));
$model = $this->getModel();
echo $model->getFileContent($fileid);
JFactory::getApplication()->close();
}
function themeinstall() {
JRequest::checkToken() or die( 'Invalid Token' );
$post = JRequest::get('post');
$theme = array();
if (isset($post['theme_component'])) {
//$theme['component'] = 1;
}
if (isset($post['theme_categories'])) {
// TODO - change to 1 in case the parameters component will be added to Joomla! CMS back
$theme['categories'] = 0;
}
if (isset($post['theme_category'])) {
// TODO - change to 1 in case the parameters component will be added to Joomla! CMS back
$theme['category'] = 0;
}
$theme['component'] = 1;
if (!empty($theme)) {
$ftp = JClientHelper::setCredentialsFromRequest('ftp');
$model = &$this->getModel( 'phocagalleryt' );
if ($model->install($theme)) {
$cache = &JFactory::getCache('mod_menu');
$cache->clean();
$msg = JText::_('COM_PHOCAGALLERY_SUCCESS_THEME_INSTALLED');
}
} else {
$msg = JText::_('COM_PHOCAGALLERY_ERROR_THEME_APPLICATION_AREA');
}
$this->setRedirect( 'index.php?option=com_phocagallery&view=phocagalleryt', $msg );
}
function cancel($key = NULL) {
$this->setRedirect( 'index.php?option=com_phocagallery' );
}
function bgimagesmall() {
JRequest::checkToken() or die( 'Invalid Token' );
$post = JRequest::get('post');
$data['image'] = 'shadow3';
$data['iw'] = $post['siw'];
$data['ih'] = $post['sih'];
$data['sbgc'] = $post['ssbgc'];
$data['ibgc'] = $post['sibgc'];
$data['ibrdc'] = $post['sibrdc'];
$data['iec'] = $post['siec'];
$data['ie'] = $post['sie'];
phocagalleryimport('phocagallery.image.imagebgimage');
$errorMsg = '';
$bgImage = PhocaGalleryImageBgImage::createBgImage($data, $errorMsg);
if ($bgImage) {
$msg = JText::_('COM_PHOCAGALLERY_SUCCESS_BG_IMAGE');
} else {
$msg = JText::_('COM_PHOCAGALLERY_ERROR_BG_IMAGE');
if($errorMsg != '') {
$msg .= '<br />' . $errorMsg;
}
}
$linkSuffix = '&siw='.$post['siw'].'&sih='.$post['sih'].'&ssbgc='.str_replace('#','',$post['ssbgc']).'&sibgc='.str_replace('#','',$post['sibgc']).'&sibrdc='.str_replace('#','',$post['sibrdc']).'&sie='.$post['sie'].'&siec='.str_replace('#','',$post['siec']);
$this->setRedirect( 'index.php?option=com_phocagallery&view=phocagalleryt'.$linkSuffix , $msg );
}
function bgimagemedium() {
JRequest::checkToken() or die( 'Invalid Token' );
$post = JRequest::get('post');
$data['image'] = 'shadow1';
$data['iw'] = $post['miw'];
$data['ih'] = $post['mih'];
$data['sbgc'] = $post['msbgc'];
$data['ibgc'] = $post['mibgc'];
$data['ibrdc'] = $post['mibrdc'];
$data['iec'] = $post['miec'];
$data['ie'] = $post['mie'];
phocagalleryimport('phocagallery.image.imagebgimage');
$errorMsg = '';
$bgImage = PhocaGalleryImageBgImage::createBgImage($data, $errorMsg);
if ($bgImage) {
$msg = JText::_('COM_PHOCAGALLERY_SUCCESS_BG_IMAGE');
} else {
$msg = JText::_('COM_PHOCAGALLERY_ERROR_BG_IMAGE');
if($errorMsg != '') {
$msg .= '<br />' . $errorMsg;
}
}
$linkSuffix = '&miw='.$post['miw'].'&mih='.$post['mih'].'&msbgc='.str_replace('#','',$post['msbgc']).'&mibgc='.str_replace('#','',$post['mibgc']).'&mibrdc='.str_replace('#','',$post['mibrdc']).'&mie='.$post['mie'].'&miec='.str_replace('#','',$post['miec']);
$this->setRedirect( 'index.php?option=com_phocagallery&view=phocagalleryt'.$linkSuffix , $msg );
}
}
?>