Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ColumnImage::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'parent_id' => $this->parent_id, 'top' => $this->top, 'width' => $this->width, 'height' => $this->height, 'status' => $this->status, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'created_by' => $this->created_by, 'updated_by' => $this->updated_by]);
     $query->andFilterWhere(['like', 'path', $this->path])->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'alt', $this->alt])->andFilterWhere(['like', 'content', $this->content]);
     return $dataProvider;
 }
Ejemplo n.º 2
0
 /**
  * Finds the ColumnImage model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ColumnImage the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ColumnImage::findOne($id)) !== null) {
         $model->blockWidth = $model->getBlockWidth();
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getColumnImages()
 {
     return $this->hasMany(ColumnImage::className(), ['parent_id' => 'id']);
 }
Ejemplo n.º 4
0
echo $form->field($model, 'blockWidth')->textInput();
?>

    <?php 
echo $form->field($model, 'title')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'alt')->textInput(['maxlength' => true]);
?>

    <?php 
echo $form->field($model, 'content')->textarea(['rows' => 6]);
?>

    <?php 
echo $form->field($model, 'status')->dropDownList(ColumnImage::getStatuses());
?>

    <div class="form-group">
        <?php 
echo Html::submitButton($model->isNewRecord ? 'Добавить' : 'Сохранить', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>

    <?php 
ActiveForm::end();
?>

</div>
Ejemplo n.º 5
0
<?php

use app\models\blog\ColumnImage;
/* @var \app\models\blog\ColumnImage $model */
?>
<div class="<?php 
echo $model->getBlockWidth();
?>
">
    <img src="/<?php 
echo ColumnImage::imageUrl() . $model->path;
?>
" alt="<?php 
echo $model->alt;
?>
" class="img-responsive">
</div>