git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9876 b9a71923-0436-4b27-9f14-aed3839534dd
115 lines
3.4 KiB
PHP
115 lines
3.4 KiB
PHP
<?php
|
|
/*
|
|
* 2007-2011 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-2011 PrestaShop SA
|
|
* @version Release: $Revision: 9194 $
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*/
|
|
|
|
class HelperFormCore extends Helper
|
|
{
|
|
|
|
public $id;
|
|
|
|
public $first_call = true;
|
|
public $toolbar = true;
|
|
|
|
/**
|
|
* @var array of forms fields
|
|
* Usage :
|
|
*
|
|
*/
|
|
protected $fields_form = array();
|
|
|
|
public $fields_value = array();
|
|
|
|
public $table;
|
|
|
|
/**
|
|
* Used to override default 'submitAdd' parameter in form action attribute
|
|
* @var string
|
|
*/
|
|
public $submit_action = '';
|
|
|
|
public $token;
|
|
|
|
public $languages = null;
|
|
public $default_form_language = null;
|
|
public $allow_employee_form_lang = null;
|
|
|
|
protected $tpl = 'helper/form/form.tpl';
|
|
|
|
public function generateForm($fields_form)
|
|
{
|
|
$this->fields_form = $fields_form;
|
|
return $this->generate();
|
|
}
|
|
|
|
public function generate()
|
|
{
|
|
if ($this->submit_action == '')
|
|
$this->submit_action = 'submitAdd'.$this->table;
|
|
|
|
if (isset($this->fields_form['asso_shop']) && Shop::isFeatureActive())
|
|
if ($this->fields_form['asso_shop'] == 'group')
|
|
$asso_shop = $this->displayAssoShop('group_shop');
|
|
elseif ($this->fields_form['asso_shop'] == 'shop')
|
|
$asso_shop = $this->displayAssoShop();
|
|
|
|
$iso = $this->context->language->iso_code;
|
|
$this->tpl->assign(array(
|
|
'submit_action' => $this->submit_action,
|
|
'toolbar_btn' => $this->toolbar_btn,
|
|
'firstCall' => $this->first_call,
|
|
'current' => $this->currentIndex,
|
|
'token' => $this->token,
|
|
'table' => $this->table,
|
|
'languages' => $this->languages,
|
|
'defaultFormLanguage' => $this->default_form_language,
|
|
'allowEmployeeFormLang' => $this->allow_employee_form_lang,
|
|
'form_id' => $this->id,
|
|
'fields' => $this->fields_form,
|
|
'fields_value' => $this->fields_value,
|
|
'required_fields' => $this->getFieldsRequired(),
|
|
'vat_number' => file_exists(_PS_MODULE_DIR_.'vatnumber/ajax.php'),
|
|
'module_dir' => _MODULE_DIR_,
|
|
'contains_states' => (isset($this->fields_value['id_country']) && isset($this->fields_value['id_state'])) ? Country::containsStates($this->fields_value['id_country']) : null,
|
|
'asso_shop' => isset($asso_shop) ? $asso_shop : null,
|
|
'iso' => file_exists(_PS_ROOT_DIR_.'/js/tiny_mce/langs/'.$iso.'.js') ? $iso : 'en',
|
|
'path_css' => _THEME_CSS_DIR_,
|
|
'ad' => dirname($_SERVER["PHP_SELF"]),
|
|
'show_toolbar' => $this->show_toolbar
|
|
));
|
|
return parent::generate();
|
|
}
|
|
|
|
public function getFieldsRequired()
|
|
{
|
|
if (isset($this->fields_form['input']))
|
|
foreach ($this->fields_form['input'] as $input)
|
|
if (array_key_exists('required', $input) && $input['required'])
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
}
|