# css-javascript-toolbox/11.9/framework/ServicesFW/Controller.class.php

CSS &amp; JavaScript Toolbox, version 11.9. 224 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/code/framework/ServicesFW/Controller.class.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/11.9/raw/framework/ServicesFW/Controller.class.php
- Modified: 2024-01-15T08:59:08+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/11.9/code/framework/ServicesFW/Controller.class.php#L10-L20`.

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

/**
* 
*/
abstract class CJTServicesMVCController {
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $config;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $models = array();
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $redirect;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $result;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $route;
	
	/**
	* put your comment there...
	* 
	* @var mixed
	*/
	private $view;

	/**
	* put your comment there...
	* 
	* @param mixed $config
	* @param mixed $route
	* @return CJTServicesMVCController
	*/
	public function __construct($config, $route) {
		# Initialize
		$this->config = $config;
		$this->route = $route;
		# Create View
		$viewClass = isset( $this->route[ 'viewClass' ] ) ? $this->route[ 'viewClass' ] : $this->config[ 'defaultViewClass' ];
		$this->view = new $viewClass( $this );
	}

	/**
	* put your comment there...
	* 
	* @param mixed $action
	*/
	public function & dispatch($action) {
		# Get action method
		$methodName = lcfirst( $action ) . "Action";
		if ( method_exists( $this, $methodName ) ) {
			# Call method, hold result
			$this->result = $this->$methodName();
			# Redirect if redirected
			if ( $this->redirect ) {
				# Redirect
				wp_redirect( $this->redirect[ 'location' ] );
				# Save Models state
				$this->saveState();
				# Terminate
				die();
			}
			# Result expected to be Array-Like iterator from which
			# we will copy all members to the view class
			$result = $this->result ? $this->result : array();
			foreach ( $result as $name => $value ) {
				$this->view->$name = $value;
			}
			# Signal/Notify view so it can start work on the action result
			$this->view->dispatch();
		}
		else {
			throw new Exception( 'Bad Request!!' );
		}
		return $this;
	}

	/**
	* put your comment there...
	* 
	*/
	public function getConfig() {
		return $this->config;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function & getForm($name) {}

	/**
	* put your comment there...
	* 
	* @param mixed $config
	* @param mixed $route
	*/
	public static function & getInstance($config, $route) {
		# Get controller name or use default controller if controller is not supplied
		$controllerName = isset( $route[ 'controller' ] ) ? $route[ 'controller' ] : $config[ 'defaultController' ];
		$controllerName = ucwords( $controllerName );
		$controllerClass = "{$config[ 'namespace' ]}{$controllerName}Controller";
		# Create controller
		$controller = new $controllerClass( $config, $route );
		# Return controller
		return $controller;
	}
  
	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function & getModel($name = null) {
		# Use controller name if name is nit supplied
		if ( ! $name ) {
			preg_match( '/' . preg_quote( $this->config[ 'namespace' ] ) . '(.+)Controller/', 
									get_class( $this ), 
									$controllerClassInfo );
			$name = $controllerClassInfo[ 1 ];
		}
		# Create model if not yet created
		if ( ! isset( $this->models[ $name ] ) ) {
			# Get model class
			$modelClass = "{$this->config[ 'namespace' ]}{$name}Model";
			# Instantiate model
			$this->models[ $name ] = new $modelClass();
		}
		return $this->models[ $name ];
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function & getResponse() {
		return $this->view;
	}

	/**
	* put your comment there...
	* 
	*/
	public function & getResult() {
		return $this->result;
	}
	
	/**
	* put your comment there...
	* 
	*/
	public function getRoute() {
		return $this->route;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function getServiceParameter($name) {
		
		return isset( $this->config[ 'parameters' ][ $name ] ) ? $this->config[ 'parameters' ][ $name ] : null;
	}

	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function & getTable($name) {}
	
	/**
	* put your comment there...
	* 
	* @param mixed $location
	*/
	protected function redirect($location) {
		# Save redirect
		$this->redirect = compact( 'location' );
		# Chain
		return $this;
	}

	/**
	* put your comment there...
	* 
	*/
	public function & saveState() {
		# Saving model states
		foreach ( $this->models as $model ) {
			$model->saveState();
		}
		# chain
		return $this;
	}
}
```
