Serveur preprod f0c0c48223 first push
2016-04-14 16:14:31 +02:00

10 lines
371 B
PHP
Executable File

<?php
if (version_compare(_PS_VERSION_, '1.5', '>=') && version_compare(_PS_VERSION_, '1.5.2.0', '<=') && !class_exists ("ShopPrestaModule")) {
class ShopPrestaModule extends ShopCore {
// Abilty to add module shop asso table
public static function PrestaModule_setAssoTable($table, $type = 'shop') {
Shop::$asso_tables[$table] = array('type' => $type);
}
}
}