176 lines
4.2 KiB
PHP
176 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Module Class File for PICKLES
|
|
*
|
|
* PICKLES is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* PICKLES is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with PICKLES. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @author Joshua John Sherman <josh@phpwithpickles.org>
|
|
* @copyright Copyright 2007, 2008 Joshua John Sherman
|
|
* @link http://phpwithpickles.org
|
|
* @license http://www.gnu.org/copyleft/lesser.html
|
|
* @package PICKLES
|
|
*/
|
|
|
|
/**
|
|
* Module Class
|
|
*
|
|
* Every module (page) in PICKLES at both the core and site levels should
|
|
* extend this class. It handles the getting of common module variables
|
|
* (auth, data and view) as well as making sure that every module has a
|
|
* database object available.
|
|
*/
|
|
class Module extends Object {
|
|
|
|
/**
|
|
* Data array used by the viewer
|
|
*/
|
|
protected $data = array();
|
|
|
|
/**
|
|
* Config object
|
|
*/
|
|
protected $config = null;
|
|
|
|
/**
|
|
* Database object
|
|
*/
|
|
protected $db = null;
|
|
|
|
/**
|
|
* Name of the module
|
|
*/
|
|
protected $name = null;
|
|
|
|
/**
|
|
* Mailer object
|
|
*/
|
|
protected $mailer = null;
|
|
|
|
protected $authentication = false;
|
|
protected $viewer = DISPLAY_PHP;
|
|
protected $session = false;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* Handles calling the parent constructor and sets up the module's
|
|
* internal config and database object
|
|
*/
|
|
public function __construct(Config $config, DB $db, Mailer $mailer) {
|
|
parent::__construct();
|
|
|
|
$this->config = $config;
|
|
$this->db = $db;
|
|
$this->mailer = $mailer;
|
|
}
|
|
|
|
/**
|
|
* Gets the authenticate value
|
|
*
|
|
* Order of precedence: Module, Config, Guess (guess is always false)
|
|
*
|
|
* @return boolean Whether or not the module requires user authentication
|
|
*/
|
|
public function getAuthentication() {
|
|
if ($this->authentication != null) {
|
|
return $this->authentication;
|
|
}
|
|
else if (is_bool($this->config->getAuthentication())) {
|
|
return $this->config->getAuthentication();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Gets the session value
|
|
*
|
|
* Order of precedence: Auth On, Module, Config, Guess (guess is always false)
|
|
*
|
|
* @return boolean Whether or not the session needs to be started
|
|
*/
|
|
public function getSession() {
|
|
if ($this->authentication === true) {
|
|
return true;
|
|
}
|
|
else if ($this->session != null) {
|
|
return $this->session;
|
|
}
|
|
else if (is_bool($this->config->getSession())) {
|
|
return $this->config->getSession();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Gets the requested Display
|
|
*
|
|
* Order of precedence: Module, Config, Guess (guess is always Smarty)
|
|
*
|
|
* @return string The viewer that the module has requested to be used
|
|
* @todo Guess shouldn't be Smarty, it should be the dummy PHP template.
|
|
* @todo Use the config override value to help determine.
|
|
*/
|
|
public function getDisplay() {
|
|
if ($this->display == null) {
|
|
return isset($argv) ? 'CLI' : 'Smarty';
|
|
}
|
|
else {
|
|
return $this->display;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Alias for $module->data
|
|
*
|
|
* @return array Associative array of data that was set by the module
|
|
*/
|
|
public function getData() {
|
|
if (isset($this->data)) {
|
|
return $this->data;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function __set($variable, $value) {
|
|
$this->data[$variable] = $value;
|
|
}
|
|
|
|
/**
|
|
* Destructor
|
|
*
|
|
* Handles calling the parent's constructor, nothing else.
|
|
*/
|
|
public function __destruct() {
|
|
parent::__destruct();
|
|
}
|
|
|
|
/**
|
|
* Default function
|
|
*
|
|
* This function is overloaded by the module. The __default() function
|
|
* is where any code that needs to be executed at run time needs to be
|
|
* placed. It's not in the constructor as the module needs to be
|
|
* instantiated first so that the authorization requirements can be
|
|
* checked without running code it's potentially not supposed to have
|
|
* been executed.
|
|
*/
|
|
public function __default() { }
|
|
}
|
|
|
|
?>
|