* @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class EspacepharmaciensControllerCore extends FrontController { public $php_self = 'espacepharmaciens'; /** * Assign template vars related to page content * @see FrontController::initContent() */ public function setMedia() { parent::setMedia(); $this->addCSS(_THEME_CSS_DIR_.'espacepharmaciens.css'); $this->addJS(_THEME_JS_DIR_.'espacepharmaciens.js'); } public function initContent() { // $this->context = Context::getContext(); $id_shop = $this->context->shop->id; $id_lang = $this->context->language->id; // $this->context->smarty->assign('page',1); if(Tools::getValue('espaceCIP') && Tools::getValue('espaceMail')){ $espaceCIP=Tools::getValue('espaceCIP'); $espaceMail=Tools::getValue('espaceMail'); $sql='insert into ps_espacepharmaciens (id,cip,email) values (NULL,\''.$espaceCIP.'\',\''.$espaceMail.'\')'; if($insert= Db::getInstance(_PS_USE_SQL_SLAVE_)->execute($sql)) $this->context->smarty->assign('confirmAdd',1); } $this->setTemplate(_PS_THEME_DIR_.'espacepharmaciens.tpl'); parent::initContent(); } }