It looks like you're new here. If you want to get involved, click one of these buttons!
public $ages = array(
1 => '4',
2 => '5',
4 => '6',
8 => '7',
16 => '8',
32 => '9',
64 => '10',
128 => '11',
256 => '12',
512 => '13',
1024 => '14',
2048 => '15',
4096 => '16'
);
....
$fields['ages'] = array(
'type' => 'multi',
'options' => $this->ages,
'mode' => 'checkbox',
'row_class' => 'age-range'
);
Comments