255] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'difficulty_level' => 'Difficulty Level', 'coordinates_x' => 'Coordinates X', 'coordinates_y' => 'Coordinates Y', 'address' => 'Address', 'email' => 'Email', 'description' => 'Description', 'gallery' => 'Gallery', 'how_to_get' => 'How To Get', 'name' => 'Name', 'forecast_id'=> 'ID прогноза', 'forecast_code'=> 'Код прогноза' ]; } function isActive($array) { $array = explode(',' , $array); if(in_array($this->id, $array)){ return "checked"; } else{ return ""; } } public function behaviors() { return [ 'slug' => [ 'class' => 'common\behaviors\Slug', 'in_attribute' => 'name', 'out_attribute' => 'translit', 'translit' => true ] ]; } }