common\models\PostComment::beforeSave PHP Method

beforeSave() public method

public beforeSave ( $insert )
    public function beforeSave($insert)
    {
        if (!parent::beforeSave($insert)) {
            return false;
        }
        $this->comment = PostService::contentComment($this->comment, $this);
        return true;
    }