Jump to content

В Админке Сохранение Значений Вместо Bool


Recommended Posts

$this->fields_options = array(
			'general' => array(
			'title' =>	'Free Carrier',
			'icon' =>	'icon-cogs',
			'fields' =>	array(
								'ZZZZ' => array(
							'title' => 'USPS',
							'hint' => 'US Post Ship',
							'validation' => 'isBool',
							'cast' => 'intval',
							'type' => 'bool',
							'default' => 0
								)
						),
			'submit' => array('title' => $this->l('Save'))
				)
		);

он сохраняет либо 0 либо 1

а я хочу к примеру или 14 или 13

Link to comment
Share on other sites

'validation' => 'isBool',
'type' => 'bool',
 
 
Вот это нужно переделать.
 
На:

validation' => 'isInt',
'type' => 'text',
 
И еще убедись что в БД для нужной колонки указан правильный тип колонки, к примеру "int(10)"
Edited by Kerm (see edit history)
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...