BcFormHelper::ckeditor PHP Method

ckeditor() public method

CKEditorを出力する
public ckeditor ( string $fieldName, array $options = [] ) : string
$fieldName string
$options array
return string
    public function ckeditor($fieldName, $options = array())
    {
        $options = array_merge(array('type' => 'textarea'), $options);
        return $this->BcCkeditor->editor($fieldName, $options);
    }