Your IP : 216.73.216.68


Current Path : /home/s/u/n/sunflowe/www2/j30/plugins/installer/jce/
Upload File :
Current File : /home/s/u/n/sunflowe/www2/j30/plugins/installer/jce/jce.php

<?php
/**
 *  @package JCE
 *  @copyright Copyright (c)2016 Ryan Demmer
 *  @license GNU General Public License version 2, or later
 */

defined('_JEXEC') or die;

/**
 * Handle commercial extension update authorization
 *
 * @package     Joomla.Plugin
 * @subpackage  Installer.Jce
 * @since       2.6
 */
class plgInstallerJce extends JPlugin
{
	/**
	 * Handle adding credentials to package download request
	 *
	 * @param   string  $url        url from which package is going to be downloaded
	 * @param   array   $headers    headers to be sent along the download request (key => value format)
	 *
	 * @return  boolean true if credentials have been added to request or not our business, false otherwise (credentials not set by user)
	 *
	 * @since   3.0
	 */
	public function onInstallerBeforePackageDownload(&$url, &$headers)
	{
		$app = JFactory::getApplication();

		$uri = JUri::getInstance($url);
		$host = $uri->getHost();

		if ($host !== 'www.joomlacontenteditor.net') {
			return true;
		}

		// Get the subscription key
		JLoader::import('joomla.application.component.helper');
		$component = JComponentHelper::getComponent('com_jce');

		$key = $component->params->get('updates_key', '');

		if (empty($key)) {
            $language = JFactory::getLanguage();
            $language->load('plg_installer_jce', JPATH_ADMINISTRATOR);

            $app->enqueueMessage(JText::_('PLG_INSTALLER_JCE_KEY_WARNING'), 'notice');
		}
		
		// Append the subscription key to the download URL
		$uri->setVar('key', $key);
		$url = $uri->toString();

		return true;
	}
}