| Current Path : /home/bateauecpx/www/administrator/components/com_j2store/models/ |
| Current File : /home/bateauecpx/www/administrator/components/com_j2store/models/updates.php |
<?php
/**
* @package J2Store
* @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org
* @license GNU GPL v3 or later
*/
defined('_JEXEC') or die;
/**
* The updates provisioning Model
*/
class J2StoreModelUpdates extends F0FUtilsUpdate
{
/**
* Public constructor. Initialises the protected members as well.
*
* @param array $config
*/
public function __construct($config = array())
{
parent::__construct($config);
$isPro = defined('J2STORE_PRO') ? J2STORE_PRO : 0;
JLoader::import('joomla.application.component.helper');
if(!class_exists('J2Store')) {
require_once (JPATH_ADMINISTRATOR.'/components/com_j2store/helpers/j2store.php');
}
$params = J2Store::config();
$dlid = $params->get('downloadid', '');
$this->extraQuery = null;
// If I have a valid Download ID I will need to use a non-blank extra_query in Joomla! 3.2+
if (preg_match('/^([0-9]{1,}:)?[0-9a-f]{32}$/i', $dlid))
{
// Even if the user entered a Download ID in the Core version. Let's switch his update channel to Professional
$isPro = true;
$this->extraQuery = 'dlid=' . $dlid;
}
$this->updateSiteName = 'J2Store ' . ($isPro ? 'Professional' : 'Core');
$this->updateSite = 'http://cdn.j2store.net/j2store' . ($isPro ? '' : 'core') . '.xml';
}
}