attributeHints(); return isset($hints[$attribute]) ? $hints[$attribute] : null; } public function rules() { return ArrayHelper::merge(parent::rules(), [ ]); } public function attributeLabels() { return ArrayHelper::merge( parent::attributeLabels(), [ ]); } public static function getEditFields() { $labels = self::attributeLabels(); return [ ]; } /** * @return string marker path */ public function getIconMarker(){ return null; //TODO } /** * If events are more than one, set 'array' => true in the calendarView in the index. * @return array events */ public function getEvents() { return NULL; //TODO } /** * @return url event (calendar of activities) */ public function getUrlEvent() { return NULL; //TODO e.g. Yii::$app->urlManager->createUrl([]); } /** * @return color event */ public function getColorEvent() { return NULL; //TODO } /** * @return title event */ public function getTitleEvent() { return NULL; //TODO } }