106 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace common\models;
 | |
| 
 | |
| use Yii;
 | |
| use yii\behaviors\TimestampBehavior;
 | |
| use yii\db\Expression;
 | |
| 
 | |
| /**
 | |
|  * This is the model class for table "template".
 | |
|  *
 | |
|  * @property int $id
 | |
|  * @property string $title
 | |
|  * @property string $created_at
 | |
|  * @property string $updated_at
 | |
|  * @property string $template_file_name
 | |
|  *
 | |
|  * @property Document[] $documents
 | |
|  * @property TemplateDocumentField[] $templateDocumentFields
 | |
|  */
 | |
| class Template extends \yii\db\ActiveRecord
 | |
| {
 | |
|     public $template;
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public static function tableName()
 | |
|     {
 | |
|         return 'template';
 | |
|     }
 | |
| 
 | |
|     public function behaviors()
 | |
|     {
 | |
|         return [
 | |
|             [
 | |
|                 'class' => TimestampBehavior::class,
 | |
|                 'createdAtAttribute' => 'created_at',
 | |
|                 'updatedAtAttribute' => 'updated_at',
 | |
|                 'value' => new Expression('NOW()'),
 | |
|             ],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function rules()
 | |
|     {
 | |
|         return [
 | |
|             [['created_at', 'updated_at'], 'safe'],
 | |
|             [['title'], 'unique'],
 | |
|             [['template_file_name', 'title'], 'required'],
 | |
|             [['template'], 'required', 'message'=>'Укажите путь к файлу'],
 | |
|             [['template'], 'file', 'maxSize' => '10000'],
 | |
|             [['template'], 'file', 'skipOnEmpty' => false, 'extensions' => 'doc, docx, txt'],
 | |
|             [['title', 'template_file_name'], 'string', 'max' => 255],
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function attributeLabels()
 | |
|     {
 | |
|         return [
 | |
|             'id' => 'ID',
 | |
|             'title' => 'Название',
 | |
|             'created_at' => 'Дата создания',
 | |
|             'updated_at' => 'Дата изменения',
 | |
|             'template_file_name' => 'Файл шаблона',
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function beforeDelete()
 | |
|     {
 | |
|         foreach ($this->templateDocumentFields as $templateDocumentField){
 | |
|             $templateDocumentField->delete();
 | |
|         }
 | |
| 
 | |
|         if (!empty($this->template_file_name)) {
 | |
|             $template_path = Yii::getAlias('@templates') . '/' . $this->template_file_name;
 | |
| 
 | |
|             if(file_exists($template_path)) {
 | |
|                 unlink($template_path);
 | |
|             }
 | |
|         }
 | |
|         return parent::beforeDelete();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \yii\db\ActiveQuery
 | |
|      */
 | |
|     public function getDocuments()
 | |
|     {
 | |
|         return $this->hasMany(Document::className(), ['template_id' => 'id']);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \yii\db\ActiveQuery
 | |
|      */
 | |
|     public function getTemplateDocumentFields()
 | |
|     {
 | |
|         return $this->hasMany(TemplateDocumentField::className(), ['template_id' => 'id']);
 | |
|     }
 | |
| }
 | 
