255], ]; } public function getDeveloppementPriorite() { return $this->hasMany(DeveloppementPriorite::className(), ['id_developpement' => 'id'])->with('etablissement') ; } public function getDeveloppementPrioriteCurrentEtablissement() { return $this->hasOne(DeveloppementPriorite::className(), ['id_developpement' => 'id'])->where(['id_etablissement'=>Yii::$app->user->identity->id_etablissement])->with('etablissement') ; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'objet' => 'Sujet', 'description' => 'Description', 'date' => 'Date', 'avancement' => 'Avancement', 'statut' => 'Statut', 'estimation_temps' => 'Estimation temps', 'type' => 'Type', 'date_livraison' => 'Date de livraison' ]; } public function setDateLivraison($date = '') { if(strlen($date)) $this->date_livraison = $date ; if(strlen($this->date_livraison)) $this->date_livraison = date('Y-m-d',strtotime($this->date_livraison)) ; } }