Jump to content

Helper Form Non Salva Tutti I Campi Creati


Madsex

Recommended Posts

Salve a tutti.

 

Stò creando la pagina di configurazione di un modulo che stò creando e seguendo la guida per gli sviluppatori volevo usare la classe helper form per creare il form dei campi che mi serve per la configurazione.

 

Ho praticamente copiato la funzione  displayForm che crea un form base, ho poi semplicemente aggiunto un altro campo all'array input in modo tale da creare due campi testo.

Quando però viene salvato il form solo il primo campo testo viene salvato mentre il secondo viene palesemente ignorato.

 

di seguito il codice che uso che differisce veramente di poco da quello proposto dalla guida:

// Get default language
		$default_lang = (int)Configuration::get('PS_LANG_DEFAULT');

		// Init Fields form array
		$fields_form[0]['form'] = array(
			'legend' => array(
				'title' => $this->l('Settings'),
			),
			'input' => array(
				array(
					'type' => 'text',
					'label' => $this->l('Bank address'),
					'name' => 'advanced',
				),
				array(
					'type' => 'text',
					'label' => $this->l('Account owner'),
					'name' => 'advanced_2'
				)
			),
			'submit' => array(
				'title' => $this->l('Save'),
				'class' => 'button'
			)
		);

		$helper = new HelperForm();

		// Module, token and currentIndex
		$helper->module = $this;
		$helper->name_controller = $this->name;
		$helper->token = Tools::getAdminTokenLite('AdminModules');
		$helper->currentIndex = AdminController::$currentIndex.'&configure='.$this->name;

		// Language
		$helper->default_form_language = $default_lang;
		$helper->allow_employee_form_lang = $default_lang;

		// Title and toolbar
		$helper->title = $this->displayName;
		$helper->show_toolbar = true;        // false -> remove toolbar
		$helper->toolbar_scroll = true;      // yes - > Toolbar is always visible on the top of the screen.
		$helper->submit_action = 'submit'.$this->name;
		/*$helper->toolbar_btn = array(
			'save' =>
				array(
					'desc' => $this->l('Save'),
					'href' => AdminController::$currentIndex.'&configure='.$this->name.'&save'.$this->name.
						'&token='.Tools::getAdminTokenLite('AdminModules'),
				),
			'back' => array(
				'href' => AdminController::$currentIndex.'&token='.Tools::getAdminTokenLite('AdminModules'),
				'desc' => $this->l('Back to list')
			)
		);*/

		// Load current value
		$helper->fields_value['advanced'] = Configuration::get('advanced');
		$helper->fields_value['advanced_2'] = Configuration::get('advanced_2');

		$this->context->controller->addCSS($this->_path.'views/css/admin/acd_admin_style.css');
		$this->context->controller->addJS($this->_path.'views/js/admin/acd_script_admin.js');

		$tpl_path = _PS_MODULE_DIR_ . 'advanced/views/templates/admin/configuration.tpl';
		$datas = array(
			"token" => Tools::getAdminTokenLite('AdminModules'),
			"form" => $helper->generateForm($fields_form)
		);

		$data = $this->context->smarty->createTemplate($tpl_path)->assign($datas);
		return $data->fetch();

In cosa sbaglio?

 

Grazie in anticipo !

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...