addBehavior( new SoftDelete([ 'field' => 'deleted', 'value' => 1, ]) ); } public function beforeCreate() { $this->create_time = time(); } public function beforeUpdate() { $this->update_time = time(); } public function beforeSave() { if (empty($this->cover)) { $this->cover = kg_default_slide_cover_path(); } elseif (Text::startsWith($this->cover, 'http')) { $this->cover = self::getCoverPath($this->cover); } if (is_array($this->target_attrs) || is_object($this->target_attrs)) { $this->target_attrs = kg_json_encode($this->target_attrs); } } public function afterFetch() { if (!Text::startsWith($this->cover, 'http')) { $this->cover = kg_cos_slide_cover_url($this->cover); } if (is_string($this->target_attrs)) { $this->target_attrs = json_decode($this->target_attrs, true); } } public static function getCoverPath($url) { if (Text::startsWith($url, 'http')) { return parse_url($url, PHP_URL_PATH); } return $url; } public static function targetTypes() { return [ self::TARGET_COURSE => '课程', self::TARGET_PAGE => '单页', self::TARGET_LINK => '链接', ]; } }