Files
interblue.pl/modules/pshowimporter/controllers/admin/PShowImporterBackupController.php
2024-10-25 14:16:28 +02:00

28 lines
671 B
PHP

<?php
/**
* File from http://PrestaShow.pl
*
* DISCLAIMER
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future.
*
* @authors PrestaShow.pl <kontakt@prestashow.pl>
* @copyright 2015 PrestaShow.pl
* @license http://PrestaShow.pl/license
*/
require_once dirname(__FILE__) . "/../../config.php";
class PShowImporterBackupController extends PShowBackupController
{
public $select_menu_tab = 'subtab-PShowImporterMain';
public function __construct()
{
parent::__construct();
global $smarty;
$smarty->assign('lang_iso', $this->context->language->iso_code);
}
}