<?php   
/*------------------------------------------------------------------------------
  $Id$

  AbanteCart, Ideal OpenSource Ecommerce Solution
  http://www.AbanteCart.com

  Copyright © 2011-2017 Belavier Commerce LLC

  This source file is subject to Open Software License (OSL 3.0)
  License details is bundled with this package in the file LICENSE.txt.
  It is also available at this URL:
  <http://www.opensource.org/licenses/OSL-3.0>

 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' )) {
	header ( 'Location: static_pages/' );
}
class ControllerResponsesErrorAjaxError extends AController {

	public function main() {
		//build default error responce
		$this->loadLanguage('error/error');					
		$error = new AError ( '' );
		$err_data = array(
			'error_title' => $this->language->get('heading_title'),
			'error_text' => $this->language->get('text_error')
		);
		return $error->toJSONResponse('ERROR_400', $err_data );			
	}

    public function permission() {
		//build permission error responce
		$this->loadLanguage('error/permission');					
		$error = new AError ( '' );
		$err_data = array(
			'error_title' => $this->language->get('heading_title'),
			'error_text' => $this->language->get('text_permission'),
			'show_dialog' => true,			
		);
		return $error->toJSONResponse('NO_PERMISSIONS_402', $err_data );	
	}

	public function login() {
		//build login error responce
		$this->loadLanguage('error/login');						
		$error = new AError ( '' );
		$err_data = array(
			'error_title' => $this->language->get('heading_title'),
			'error_text' => $this->language->get('text_login'),
			'show_dialog' => true,
			'reload_page' => true,			
		);
		return $error->toJSONResponse('LOGIN_FAILED_401', $err_data );	
	}

	public function not_found() {
		//build not_found responce
		$this->loadLanguage('error/not_found');						
		$error = new AError ( '' );
		$err_data = array(
			'error_title' => $this->language->get('heading_title'),
			'error_text' => $this->language->get('text_not_found')
		);
		return $error->toJSONResponse('NOT_FOUND_404', $err_data );	
	}

}