예제 #1
0
?>

    <?php 
echo $form->field($model, 'text')->widget(Redactor::className(), ['options' => ['minHeight' => 400, 'imageUpload' => Url::to(['/admin/redactor/upload', 'dir' => 'article'], true), 'fileUpload' => Url::to(['/admin/redactor/upload', 'dir' => 'article'], true), 'plugins' => ['fullscreen']]]);
?>

    <?php 
echo $form->field($model, 'time')->widget(DateTimePicker::className());
?>

    <?php 
echo '';
?>

    <?php 
echo $form->field($model, 'categoryIds')->widget(SelectizeDropDownList::className(), ['options' => ['multiple' => true], 'items' => ArrayHelper::map(Category::find()->all(), 'category_id', 'title')]);
?>

    <?php 
if ($this->context->module->settings['enableTags']) {
    ?>
        <?php 
    echo $form->field($model, 'tagNames')->widget(TagsInput::className());
    ?>
    <?php 
}
?>

    <?php 
if (IS_ROOT) {
    ?>