* @copyright 2007-2018 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class AdminOnlineChatConfigurationController extends ModuleAdminController { protected $name = null; /** * Set the bootstrap */ public function __construct() { $this->name = 'onlinechat'; Tools::redirectAdmin( 'index.php?tab=AdminModules&configure='.$this->name.'&token='.Tools::getAdminTokenLite('AdminModules') ); } }