Added properties to BooleanField for change the showed texts and added NoForm form

This commit is contained in:
Antonio de la Rosa 2015-11-20 02:21:49 +01:00
parent afafa75504
commit 1c88f85a99
2 changed files with 27 additions and 2 deletions

View file

@ -19,12 +19,16 @@ class BooleanField extends PhangoField {
public $quot_close='\'';
public $std_error='';
public $default_value=0;
public $text_yes='';
public $text_no='';
function __construct()
{
$this->size=1;
$this->form='PhangoApp\PhaModels\Forms\SelectForm';
$this->text_no=I18n::lang('common', 'no', 'No');
$this->text_yes=I18n::lang('common', 'yes', 'Yes');
}
@ -65,13 +69,13 @@ class BooleanField extends PhangoField {
{
default:
return I18n::lang('common', 'no', 'No');
return $this->text_no;
break;
case 1:
return I18n::lang('common', 'yes', 'Yes');
return $this->text_yes;
break;