Your IP : 216.73.216.61


Current Path : /home/wuectly/www/administrator/components/com_icagenda/liveupdate/
Upload File :
Current File : /home/wuectly/www/administrator/components/com_icagenda/liveupdate/config.php

<?php
/**
 *------------------------------------------------------------------------------
 *  iCagenda v3 by Jooml!C - Events Management Extension for Joomla! 2.5 / 3.x
 *------------------------------------------------------------------------------
 *
 * @package LiveUpdate 2.1.5
 * @copyright Copyright ©2011-2013 Nicholas K. Dionysopoulos / AkeebaBackup.com
 * @license GNU LGPLv3 or later <http://www.gnu.org/copyleft/lesser.html>
 *
 * @version     3.4.0 2014-07-16
 * @since       1.2.6
 *
 * CHANGED (3.3.6) : _versionStrategy set to 'vcompare'
 * CHANGED (3.4.0) : Removal of updateURL (set with getUpdateURL depending on getMinimumStability)
 */

defined('_JEXEC') or die();

/**
 * Configuration class for your extension's updates.
 */
class LiveUpdateConfig extends LiveUpdateAbstractConfig
{
	var $_extensionName			= 'com_icagenda';
	var $_extensionTitle		= 'iCagenda PRO Release System';
//	var $_updateURL				= 'http://pro.joomlic.com/index.php?option=com_ars&view=update&format=ini&id=1';
	var $_requiresAuthorization	= true;
	var $_versionStrategy		= 'vcompare';
	var $_storageAdapter		= 'file';
	var $_storageConfig = array('path' => JPATH_CACHE);

	public function __construct()
	{
		JLoader::import('joomla.filesystem.file');

		// Should I use our private CA store?
		if (@file_exists(dirname(__FILE__).'/../assets/cacert.pem'))
		{
			$this->_cacerts = dirname(__FILE__).'/../assets/cacert.pem';
		}

		parent::__construct();
	}
}