addBehavior( new SoftDelete([ 'field' => 'deleted', 'value' => 1, ]) ); } public function beforeCreate() { if (empty($this->cover)) { $this->cover = kg_default_vip_cover_path(); } elseif (Text::startsWith($this->cover, 'http')) { $this->cover = self::getCoverPath($this->cover); } $this->create_time = time(); } public function beforeUpdate() { if (Text::startsWith($this->cover, 'http')) { $this->cover = self::getCoverPath($this->cover); } $this->update_time = time(); } public function afterFetch() { if (!Text::startsWith($this->cover, 'http')) { $this->cover = kg_cos_vip_cover_url($this->cover); } $this->price = (float)$this->price; } public static function getCoverPath($url) { if (Text::startsWith($url, 'http')) { return parse_url($url, PHP_URL_PATH); } return $url; } }