67 lines
2.0 KiB
PHP
67 lines
2.0 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* 2007-2013 PrestaShop
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Open Software License (OSL 3.0)
|
||
|
* that is bundled with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://opensource.org/licenses/osl-3.0.php
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@prestashop.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* DISCLAIMER
|
||
|
*
|
||
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
|
* versions in the future. If you wish to customize PrestaShop for your
|
||
|
* needs please refer to http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author PrestaShop SA <contact@prestashop.com>
|
||
|
* @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();
|
||
|
}
|
||
|
}
|