# css-javascript-toolbox/9.3/framework/access-points/access-point.class.php

CSS &amp; JavaScript Toolbox, version 9.3. 221 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/code/framework/access-points/access-point.class.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/raw/framework/access-points/access-point.class.php
- Modified: 2019-08-02T13:17:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/code/framework/access-points/access-point.class.php#L10-L20`.

```php
<?php
/**
* 
*/

// Disallow direct access.
defined('ABSPATH') or die("Access denied");

/**
* Access Point interface
*/
interface CJTIAccessPoint {
	
	/**
	* put your comment there...
	* 
	*/
	public function listen();
	
}

/**
* 
*/
abstract class CJTAccessPoint extends CJTHookableClass implements CJTIAccessPoint {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected static $connected;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $controller;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $controllerName;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $name;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $onconnected = array('parameters' => array('state'));
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $ongetdefaultcontrollername = array('parameters' => array('controller'));

	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $onlisten = array('hookType' =>CJTWordpressEvents::HOOK_ACTION);
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $onsetcontroller = array('parameters' => array('controller'));
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $overrideControllersPath = null;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $overrideControllersPrefix = null;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	protected $pageId = CJTPlugin::PLUGIN_REQUEST_ID;
	
	/**
	* put your comment there...
	* 
	*/
	public function __construct($defaultController = 'blocks') {
		// Initialize Hookable.
		parent::__construct();
		// Overrides controllers path using current Access Point model class path
		$accessPointClassLoader =& CJT_Framework_Autoload_Loader::findClassLoader(get_class($this));
		if ($accessPointClassLoader) {
			$this->overrideControllersPath = $accessPointClassLoader->getPath() . DIRECTORY_SEPARATOR . 'controllers';	
			$this->overrideControllersPrefix = $accessPointClassLoader->getPrefix();
		}
		// Initialize!
		$this->controllerName = $this->ongetdefaultcontrollername(isset($_REQUEST['controller']) ? $_REQUEST['controller'] : $defaultController);
	}
	
	/**
	* put your comment there...
	* 
	* @return Boolean TRUE if it wasn't connected! FALSE otherwise.
	*/
	protected function connected() {
		// Do connect only if not connected yet
		if ($returns = !self::$connected) {
			// Fire connected event!
			$this->onconnected(true);
			// Set current instance as the connected object!
			self::$connected = $this;
		}
		return $returns;
	}
	
	/**
	* put your comment there...
	* 
	*/
	protected abstract function doListen();
	
	/**
	* put your comment there...
	* 
	*/
	public function & getController() {
		return $this->controller;	
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getControllerName() {
		return $this->controllerName;	
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getName() {
		return $this->name;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public static function & isConnected() {
		return self::$connected;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function hasAccess() {
		return current_user_can('administrator');
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function listen() {
		// Fire listen event!
		$this->onlisten();
		// Allow access points to bind their hooks
		$this->doListen();
		return $this;
	}
	
	/**
	* put your comment there...
	* 
	* @param mixed $request
	*/
	public function route($loadView = null, $request = null) {
		// Only loading one controller is allowed.
		if (!$this->controller) {
			// Import view class.
			require_once CJTOOLBOX_MVC_FRAMEWOK . '/view.inc.php';
			// Instantiate controller!
			$this->controller = $this->onsetcontroller(
				CJTController::getInstance(
					$this->controllerName, 
					$loadView, 
					$request,
					$this->overrideControllersPath,
					$this->overrideControllersPrefix
					));
		}
		return $this->controller;
	}
	
} // End class.

// Hookable!
CJTAccessPoint::define('CJTAccessPoint', array('hookType' => CJTWordpressEvents::HOOK_FILTER));
```
