first commit
This commit is contained in:
26
modules/ph_simpleblog/upgrade/install-1.3.2.2.php
Normal file
26
modules/ph_simpleblog/upgrade/install-1.3.2.2.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Blog for PrestaShop module by Krystian Podemski from PrestaHome.
|
||||
*
|
||||
* @author Krystian Podemski <krystian@prestahome.com>
|
||||
* @copyright Copyright (c) 2014-2016 Krystian Podemski - www.PrestaHome.com / www.Podemski.info
|
||||
* @license You only can use module, nothing more!
|
||||
*/
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
function upgrade_module_1_3_2_2($object)
|
||||
{
|
||||
if (!Shop::isFeatureActive()) {
|
||||
$categories = SimpleBlogCategory::getCategories(Context::getContext()->language->id, false);
|
||||
|
||||
foreach ($categories as $id_category => $category) {
|
||||
$instance = new SimpleBlogCategory($id_category, Context::getContext()->language->id);
|
||||
$instance->associateTo(Shop::getCompleteListOfShopsID());
|
||||
unset($instance);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
Reference in New Issue
Block a user