common\services\TweetService::excellent PHP Method

excellent() public static method

加精华
public static excellent ( Topic $topic )
$topic frontend\modules\topic\models\Topic
    public static function excellent(Topic $topic)
    {
        $action = $topic->status == Topic::STATUS_ACTIVE ? Topic::STATUS_EXCELLENT : Topic::STATUS_ACTIVE;
        $topic->setAttributes(['status' => $action]);
        $topic->save();
    }