%PDF- %PDF-
| Direktori : /home/lightco1/luminero.com.au/administrator/components/com_cmc/models/ |
| Current File : /home/lightco1/luminero.com.au/administrator/components/com_cmc/models/updates.php |
<?php
/**
* @package CMC
* @author Compojoom <contact-us@compojoom.com>
* @date 2016-04-15
*
* @copyright Copyright (C) 2008 - 2016 compojoom.com - Daniel Dimitrov, Yves Hoppe. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die;
/**
* The updates provisioning Model
*
* @since 1.5
*/
class CmcModelUpdates extends CompojoomModelUpdate
{
/**
* Public constructor. Initialises the protected members as well.
*
* @param array $config - the config object
*/
public function __construct($config = array())
{
// If a valid Download ID is found, add it to extra_query (Needed for Joomla! 3.2+)
$extraQuery = null;
$dlid = $this->getDownloadId('com_cmc');
if (!empty($dlid))
{
$extraQuery = 'dlid=' . $dlid;
}
$updateURL = 'https://compojoom.com/index.php?option=com_ars&view=update&task=stream&format=xml&id=13&dummy=extension.xml';
$config = array(
'update_site' => $updateURL,
'update_extraquery' => $extraQuery,
'update_sitename' => 'Cmc'
);
parent::__construct($config);
}
/**
* Checks the database for missing / outdated tables and installs or
* updates the database using the SQL xml file if necessary.
*
* @return void
*/
public function checkAndFixDatabase()
{
$dbInstaller = new CompojoomDatabaseInstaller(
array(
'dbinstaller_directory' => JPATH_ADMINISTRATOR . '/components/' . $this->component . '/sql/xml'
)
);
$dbInstaller->updateSchema();
}
}