vladimircape Posted December 16, 2015 Share Posted December 16, 2015 $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 More sharing options...
Kerm Posted December 21, 2015 Share Posted December 21, 2015 (edited) 'validation' => 'isBool', 'type' => 'bool', Вот это нужно переделать. На:validation' => 'isInt', 'type' => 'text', И еще убедись что в БД для нужной колонки указан правильный тип колонки, к примеру "int(10)" Edited December 21, 2015 by Kerm (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now