/** * Renders an inline checkbox list for a model attribute. * @param CModel $model the data model. * @param string $attribute the attribute. * @param array $data data for generating the list options (value=>display) * @param array $htmlOptions additional HTML attributes. * @return string the generated checkbox list. * @see BsHtml::activeInlineCheckBoxList */ public function inlineCheckBoxList($model, $attribute, $data, $htmlOptions = array()) { return BsHtml::activeInlineCheckBoxList($model, $attribute, $data, $htmlOptions); }