예제 #1
0
 /**
  * Generates a control group with an inline check box list for a model attribute.
  * @param CModel $model the data model.
  * @param string $attribute the attribute name.
  * @param array $data data for generating the list options (value=>display).
  * @param array $htmlOptions additional HTML attributes.
  * @return string the generated row.
  * @see BSHtml::activeInlineCheckBoxListControlGroup
  */
 public function inlineCheckBoxListControlGroup($model, $attribute, $data, $htmlOptions = array())
 {
     $htmlOptions = $this->processRowOptions($model, $attribute, $htmlOptions);
     return BSHtml::activeInlineCheckBoxListControlGroup($model, $attribute, $data, $htmlOptions);
 }