117 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace backend\modules\notes\controllers;
 | 
						|
 | 
						|
use backend\modules\notes\models\NoteSearch;
 | 
						|
use Yii;
 | 
						|
use backend\modules\notes\models\Note;
 | 
						|
use common\models\FieldsValueNew;
 | 
						|
use yii\data\ActiveDataProvider;
 | 
						|
use yii\web\Controller;
 | 
						|
use yii\web\NotFoundHttpException;
 | 
						|
 | 
						|
/**
 | 
						|
 * Default controller for the `notes` module
 | 
						|
 */
 | 
						|
class NotesController extends Controller
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Renders the index view for the module
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function actionIndex()
 | 
						|
    {
 | 
						|
        $searchModel = new NoteSearch();
 | 
						|
 | 
						|
        $dataProvider = $searchModel->search();
 | 
						|
        return $this->render('index', [
 | 
						|
            'searchModel' => $searchModel,
 | 
						|
            'dataProvider' => $dataProvider
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Creates a new note model.
 | 
						|
     * If creation is successful, the browser will be redirected to the 'view' page.
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function actionCreate()
 | 
						|
    {
 | 
						|
        $model = new Note();
 | 
						|
 | 
						|
        if ($model->load(\Yii::$app->request->post()) && $model->save()) {
 | 
						|
            return $this->redirect(['view', 'id' => $model->id]);
 | 
						|
        }
 | 
						|
 | 
						|
        return $this->render('create', [
 | 
						|
            'model' => $model
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Displays a single note model.
 | 
						|
     * @param integer $id
 | 
						|
     * @return mixed
 | 
						|
     * @throws NotFoundHttpException if the model cannot be found
 | 
						|
     */
 | 
						|
    public function actionView($id)
 | 
						|
    {
 | 
						|
        $additionalDataProvider = new ActiveDataProvider([
 | 
						|
            'query' => FieldsValueNew::find()
 | 
						|
                ->where(['item_id' => $id, 'item_type' => FieldsValueNew::TYPE_NOTE])
 | 
						|
                ->orderBy('order'),
 | 
						|
            'pagination' => [
 | 
						|
                'pageSize' => 200,
 | 
						|
            ],
 | 
						|
        ]);
 | 
						|
 | 
						|
        return $this->render('view', [
 | 
						|
           'model' => Note::findOne($id),
 | 
						|
           'additionalDataProvider' => $additionalDataProvider
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    public function actionUpdate($id)
 | 
						|
    {
 | 
						|
        $model = $this->findModel($id);
 | 
						|
 | 
						|
        if ($model->load(Yii::$app->request->post()) && $model->save()) {
 | 
						|
            return $this->redirect(['view', 'id' => $model->id]);
 | 
						|
        }
 | 
						|
 | 
						|
        return $this->render('update', [
 | 
						|
            'model' => $model,
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Deletes an existing Note model.
 | 
						|
     * If deletion is successful, the browser will be redirected to the 'index' page.
 | 
						|
     * @param integer $id
 | 
						|
     * @return mixed
 | 
						|
     * @throws NotFoundHttpException if the model cannot be found
 | 
						|
     */
 | 
						|
    public function actionDelete($id)
 | 
						|
    {
 | 
						|
        $this->findModel($id)->delete();
 | 
						|
 | 
						|
        return $this->redirect(['index']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Finds the note model based on its primary key value.
 | 
						|
     * If the model is not found, a 404 HTTP exception will be thrown.
 | 
						|
     * @param integer $id
 | 
						|
     * @return Note the loaded model
 | 
						|
     * @throws NotFoundHttpException if the model cannot be found
 | 
						|
     */
 | 
						|
    protected function findModel($id)
 | 
						|
    {
 | 
						|
        if (($model = Note::findOne($id)) !== null) {
 | 
						|
            return $model;
 | 
						|
        }
 | 
						|
 | 
						|
        throw new NotFoundHttpException('The requested page does not exist.');
 | 
						|
    }
 | 
						|
}
 |