Files
interblue.pl/modules/x13allegro/upgrade/install-4.1.9.php
2024-10-25 14:16:28 +02:00

22 lines
365 B
PHP

<?php
if (!defined('_PS_VERSION_')) {
exit;
}
require_once (dirname(__FILE__) . '/../x13allegro.php');
/**
* @param $module x13allegro
* @return bool
*/
function upgrade_module_4_1_9($module)
{
// directory for template images
if (!is_dir(X13_ALLEGRO_IMG_TEMPLATE)) {
mkdir(X13_ALLEGRO_IMG_TEMPLATE, 0775, true);
}
return true;
}