? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/plugins/system/jsntplframework/libraries/joomlashine/
File Upload :
Current File : /home/admin/public_html/old/plugins/system/jsntplframework/libraries/joomlashine/widget.php

<?php
/**
 * @version     $Id$
 * @package     JSNExtension
 * @subpackage  JSNTPLFramework
 * @author      JoomlaShine Team <support@joomlashine.com>
 * @copyright   Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
 * @license     GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Websites: http://www.joomlashine.com
 * Technical Support:  Feedback - http://www.joomlashine.com/contact-us/get-support.html
 */

// No direct access to this file
defined('_JEXEC') or die('Restricted access');

/**
 * Helper class to generate admin UI for template
 *
 * @package     JSNTPLFramework
 * @subpackage  Template
 * @since       1.0.0
 */
abstract class JSNTplWidget
{
	/**
	 * Helper method to dispatch request to widget action
	 *
	 * @return  boolean
	 */
	public static function dispatch ()
	{
		// Retrieve application instance
		$app = JFactory::getApplication();

		// Execute widget action if needed
		$action  = $app->input->getCmd('action', null);
		$widget  = $app->input->getCmd('widget', null);

		if (empty($widget) OR empty($action))
		{
			return false;
		}

		try
		{
			// Checking user permission
			if ( ! JFactory::getUser()->authorise('core.manage', 'com_templates'))
			{
				throw new Exception('JERROR_ALERTNOAUTHOR');
			}

			$widgetClass = 'JSNTplWidget' . ucfirst($widget);

			if ( ! class_exists($widgetClass))
			{
				throw new Exception('Class not found: ' . $widgetClass);
			}

			// Create widget instance if widget class is loaded
			$widgetObject = new $widgetClass();
			$widgetAction = str_replace('-', '', $action) . 'Action';

			if (method_exists($widgetObject, $widgetAction))
			{
				call_user_func(array($widgetObject, $widgetAction));
			}
			elseif (method_exists($widgetObject, 'invoke'))
			{
				call_user_func(array($widgetObject, 'invoke'), $action);
			}
			else
			{
				throw new Exception('Invalid widget action: ' . $action);
			}

			// Send action result to client
			echo json_encode(
				array(
					'type' => 'success',
					'data' => $widgetObject->getResponse()
				)
			);
		}
		catch (Exception $e)
		{
			echo json_encode(
				array(
					'type' => $e->getCode() == 99 ? 'outdate' : 'error',
					'data' => $e->getMessage()
				)
			);
		}

		return true;
	}
}

T1KUS90T
  root-grov@210.1.60.28:~$