%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/lightco1/www/administrator/components/com_poweradmin/controllers/
Upload File :
Create Path :
Current File : /home/lightco1/www/administrator/components/com_poweradmin/controllers/templates.php

<?php
/*------------------------------------------------------------------------
# JSN PowerAdmin
# ------------------------------------------------------------------------
# author    JoomlaShine.com Team
# copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
# Websites: http://www.joomlashine.com
# Technical Support:  Feedback - http://www.joomlashine.com/joomlashine/contact-us.html
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# @version $Id: templates.php 15032 2012-08-13 12:32:51Z hiepnv $
-------------------------------------------------------------------------*/

// no direct access
defined('_JEXEC') or die;
jimport('joomla.application.component.controllerform');
error_reporting(0);
class PoweradminControllerTemplates extends JControllerForm
{

	function makeDefault()
	{
		JSession::checkToken('get') or die( 'Invalid Token' );
		$id = intval(JRequest::getVar('id', 0));
		$clientId = intval(JRequest::getVar('clientId', 0));
		if (!is_numeric($id) || $id <= 0)
			jexit();

		$this->getModel('templates')->setDefaultTemplate($id, $clientId);
		jexit();
	}

	function duplicate()
	{
		JSession::checkToken('get') or die( 'Invalid Token' );
		$id = JRequest::getVar('id', array(), 'GET', 'array');

		JSNFactory::import('components.com_templates.models.style');
		JSNFactory::import('components.com_templates.tables.style');
		$model	= $this->getModel('Style','TemplatesModel',array('ignore_request'=>true));
		$model->duplicate($id);
		$duplicatedStyle = $this->getModel('templates')->getLatestStyle();
		$duplicatedStyle->thumbnail = (is_file(JPATH_SITE.DS.'templates'.DS.$duplicatedStyle->template.DS.'template_thumbnail.png')) ? JURI::root().'templates/'.$duplicatedStyle->template.'/template_thumbnail.png' : '';

		echo json_encode($duplicatedStyle);
		jexit();
	}

	function delete()
	{
		JSession::checkToken('get') or die( 'Invalid Token' );
		JSNFactory::import('components.com_templates.helpers.templates');
		$canDo	= TemplatesHelper::getActions();
		
		if(!$canDo->get('core.delete')){
			$response = array(
					'isDeleted' => false
			);
			echo json_encode($response);
			jexit();
		}		
		
		$id = JRequest::getVar('id', array(), 'GET', 'array');

		JSNFactory::import('components.com_templates.models.style');
		JSNFactory::import('components.com_templates.tables.style');
		

		JFactory::getLanguage()->load('com_templates');

		$model	= $this->getModel('Style','TemplatesModel',array('ignore_request'=>true));
		$model->delete($id);

		$isDeleted = $this->isDeleted($id[0]);

		$response = array(
			'isDeleted' => $isDeleted,
			'message'   => $model->getError()
		);

		echo json_encode($response);
		jexit();
	}

	function uninstall()
	{
		JSession::checkToken('get') or die( 'Invalid Token' );
		JSNFactory::import('components.com_installer.helpers.installer');
		$canDo	= InstallerHelper::getActions();

		if(!$canDo->get('core.delete')){
			$response = array(
					'isUninstalled' => false
			);
			echo json_encode($response);
			jexit();
		}

		$id = JRequest::getVar('id', 0);
		if (!is_numeric($id) || $id <= 0)
			return;

		$dbo = JFactory::getDBO();
		$dbo->setQuery("SELECT e.extension_id FROM #__extensions e INNER JOIN #__template_styles s ON e.element=s.template WHERE e.type='template' AND s.id={$id} LIMIT 1");
		$extensionId = $dbo->loadResult();

		if ($extensionId > 0) {
			JFactory::getLanguage()->load('com_installer');
			JSNFactory::import('components.com_installer.models.manage');

			$model	= $this->getModel('manage','InstallerModel',array('ignore_request'=>true));
			$result = $model->remove(array($extensionId));

			$response = array(
					'isUninstalled' => true
			);
			echo json_encode($response);
		}

		jexit();
	}

	function isDeleted($id)
	{
        $dbo = JFactory::getDBO();
        $dbo->setQuery("SELECT id FROM #__template_styles WHERE id=" . $id);
        $result = $dbo->loadResult();
        return $result ? false : true;
	}
}

Zerion Mini Shell 1.0