BanModel::_BeforeGet PHP 메소드

_BeforeGet() 공개 메소드

Add ban data to all Get requests.
부터: 2.0.18
public _BeforeGet ( )
    public function _BeforeGet()
    {
        $this->SQL->select('Ban.*')->select('iu.Name', '', 'InsertName')->join('User iu', 'Ban.InsertUserID = iu.UserID', 'left');
        parent::_BeforeGet();
    }