UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' ) || !IS_ADMIN) { header ( 'Location: static_pages/' ); } class ControllerApiIndexLogout extends AControllerAPI { public function post() { $this->extensions->hk_InitData($this,__FUNCTION__); $this->_do_logout(); $this->extensions->hk_UpdateData($this,__FUNCTION__); } public function get() { $this->extensions->hk_InitData($this,__FUNCTION__); $this->_do_logout(); $this->extensions->hk_UpdateData($this,__FUNCTION__); } private function _do_logout () { $request_data = $this->rest->getRequestParams(); $this->user->logout(); unset($this->session->data['token']); $this->rest->setResponseData( array( 'status' => 1, 'success' => 'Logged out', ) ); $this->rest->sendResponse(200); } } ?>