From 251bc591dac00450d4ac2ae9e6e21916424ae218 Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Tue, 22 May 2012 11:11:36 -0400 Subject: [PATCH] Move classes to miniMVC namespace --- README.md | 10 +- app/modules/welcome/controllers/welcome.php | 2 +- app/modules/welcome/models/welcome_model.php | 2 +- assets/css.php | 4 +- docs/classes.svg | 165 +- docs/classes/miniMVC.Controller.html | 752 ++++++++++ docs/classes/miniMVC.DB.html | 140 ++ docs/classes/miniMVC.Data_Store.html | 210 +++ docs/classes/miniMVC.MM.html | 448 ++++++ docs/classes/miniMVC.Model.html | 705 +++++++++ docs/classes/miniMVC.Output.html | 654 ++++++++ docs/classes/miniMVC.Page.html | 1180 +++++++++++++++ docs/classes/miniMVC.Session.html | 158 ++ docs/classes/miniMVC.miniMVC.html | 607 ++++++++ docs/deprecated.html | 4 +- docs/errors.html | 24 +- docs/graph_class.html | 4 +- docs/index.html | 17 +- docs/markers.html | 4 +- docs/namespaces/default.html | 345 +---- docs/namespaces/miniMVC.html | 422 ++++++ docs/packages/.html | 4 +- docs/packages/Default.html | 4 +- docs/packages/miniMVC.App.html | 4 +- docs/packages/miniMVC.Libraries.html | 16 +- docs/packages/miniMVC.System.html | 70 +- docs/packages/miniMVC.html | 94 +- docs/structure.xml | 1412 +++++++++--------- index.php | 2 +- sys/common.php | 34 +- sys/core/Controller.php | 125 ++ sys/core/MM.php | 4 +- sys/core/Model.php | 38 + sys/core/Output.php | 153 ++ sys/core/Page.php | 555 +++++++ sys/core/db.php | 4 +- sys/core/miniMVC.php | 2 + sys/core/traits/Generic.php | 2 + sys/core/traits/JSObject.php | 2 + sys/core/traits/Singleton.php | 2 + sys/db | 2 +- sys/libraries/data_store.php | 2 + sys/libraries/session.php | 2 + tests/MMTest.php | 9 +- tests/commonTest.php | 8 +- tests/miniMVCTest.php | 10 +- 46 files changed, 7136 insertions(+), 1281 deletions(-) create mode 100644 docs/classes/miniMVC.Controller.html create mode 100644 docs/classes/miniMVC.DB.html create mode 100644 docs/classes/miniMVC.Data_Store.html create mode 100644 docs/classes/miniMVC.MM.html create mode 100644 docs/classes/miniMVC.Model.html create mode 100644 docs/classes/miniMVC.Output.html create mode 100644 docs/classes/miniMVC.Page.html create mode 100644 docs/classes/miniMVC.Session.html create mode 100644 docs/classes/miniMVC.miniMVC.html create mode 100644 docs/namespaces/miniMVC.html create mode 100644 sys/core/Controller.php create mode 100644 sys/core/Model.php create mode 100644 sys/core/Output.php create mode 100644 sys/core/Page.php diff --git a/README.md b/README.md index 150f869..d4e49e6 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Database connections are set in /app/config/db.php * Creating a controller db = db::get_instance($db_name);` + `$this->db = miniMVC\db::get_instance($db_name);` Note that multiple databases can be used in the same class by specifying a different database name. @@ -93,11 +93,11 @@ Database connections are set in /app/config/db.php Classes with a `get_instance` static methods should be called like so: - `$obj =& class::get_instance()` + `$obj =& miniMVC\class::get_instance()` Other classes should be called using the new operator - `$obj = new class()` + `$obj = new miniMVC\class()` \ No newline at end of file diff --git a/app/modules/welcome/controllers/welcome.php b/app/modules/welcome/controllers/welcome.php index 699f6ba..69d44e0 100644 --- a/app/modules/welcome/controllers/welcome.php +++ b/app/modules/welcome/controllers/welcome.php @@ -16,7 +16,7 @@ /** * Example Controller Class */ -class Welcome extends MM_Controller { +class Welcome extends miniMVC\Controller { /** * Initialize the constructor diff --git a/app/modules/welcome/models/welcome_model.php b/app/modules/welcome/models/welcome_model.php index 9c42f81..c9cdc6e 100644 --- a/app/modules/welcome/models/welcome_model.php +++ b/app/modules/welcome/models/welcome_model.php @@ -16,7 +16,7 @@ /** * Model template class */ -class Welcome_Model extends MM_Model{ +class Welcome_Model extends miniMVC\Model{ /** * Initialize the model diff --git a/assets/css.php b/assets/css.php index 5a7a7e0..fb9e0ac 100755 --- a/assets/css.php +++ b/assets/css.php @@ -44,7 +44,7 @@ function compress($buffer) { //Remove tabs, spaces, newlines, etc. $buffer = preg_replace('`\s+`', ' ', $buffer); - $replace = array( + $replace = [ ' )' => ')', ') ' => ')', ' }' => '}', @@ -54,7 +54,7 @@ function compress($buffer) { ', ' => ',', ': ' => ':', '; ' => ';', - ); + ]; //Eradicate every last space! $buffer = trim(strtr($buffer, $replace)); diff --git a/docs/classes.svg b/docs/classes.svg index 6f8e754..c8df201 100644 --- a/docs/classes.svg +++ b/docs/classes.svg @@ -4,127 +4,128 @@ - - + + G - -cluster_default - - - - - - - - + +cluster_miniMVC + + + + + + + + +miniMVC - -\\MM_Page - - -MM_Page + +\\miniMVC\\Page + + +Page - -\\MM_Output - - -MM_Output + +\\miniMVC\\Output + + +Output - -\\MM_Page->\\MM_Output - - + +\\miniMVC\\Page->\\miniMVC\\Output + + - -\\MM - - -MM + +\\miniMVC\\Model + + +Model - -\\MM_Output->\\MM - - - - -\\MM_Controller - - -MM_Controller - - - -\\miniMVC + +\\miniMVC\\miniMVC miniMVC - -\\MM_Controller->\\miniMVC - - + +\\miniMVC\\Model->\\miniMVC\\miniMVC + + - -\\DB + +\\miniMVC\\Controller + + +Controller + + + +\\miniMVC\\Controller->\\miniMVC\\miniMVC + + + + +\\miniMVC\\DB - -DB + +DB -\\Query_Builder +\\Query_Builder \Query_Builder - -\\DB->\\Query_Builder - + +\\miniMVC\\DB->\\Query_Builder + - -\\miniMVC->\\MM + +\\miniMVC\\MM + + +MM + + + +\\miniMVC\\miniMVC->\\miniMVC\\MM -\\ArrayObject +\\ArrayObject \ArrayObject - -\\MM->\\ArrayObject + +\\miniMVC\\MM->\\ArrayObject - -\\MM_Model - - -MM_Model - + +\\miniMVC\\Output->\\miniMVC\\MM + + - -\\MM_Model->\\miniMVC - - - - -\\Data_Store + +\\miniMVC\\Data_Store - -Data_Store + +Data_Store - -\\Session + +\\miniMVC\\Session - -Session + +Session diff --git a/docs/classes/miniMVC.Controller.html b/docs/classes/miniMVC.Controller.html new file mode 100644 index 0000000..8e2ebc7 --- /dev/null +++ b/docs/classes/miniMVC.Controller.html @@ -0,0 +1,752 @@ + + + + + +miniMVC » \miniMVC\Controller + + + + + + + + + + +
+ +
+ +
+ +
+

Base Controller Class

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
Inherited
+
+

+ + + + + + + + + +
inherited_from\miniMVC\MM::__call()
inherited_from\miniMVC\miniMVC::__call()
+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Create the controller object

+
__construct() : void
+
+

+
+
+

append() +

+
append() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::append()
inherited_from\miniMVC\MM::append()
inherited_from\miniMVC\miniMVC::append()
+
+
+
+

asort() +

+
asort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::asort()
inherited_from\miniMVC\MM::asort()
inherited_from\miniMVC\miniMVC::asort()
+
+
+
+

count() +

+
count() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::count()
inherited_from\miniMVC\MM::count()
inherited_from\miniMVC\miniMVC::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::exchangeArray()
inherited_from\miniMVC\MM::exchangeArray()
inherited_from\miniMVC\miniMVC::exchangeArray()
+
+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getArrayCopy()
inherited_from\miniMVC\MM::getArrayCopy()
inherited_from\miniMVC\miniMVC::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getFlags()
inherited_from\miniMVC\MM::getFlags()
inherited_from\miniMVC\miniMVC::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIterator()
inherited_from\miniMVC\MM::getIterator()
inherited_from\miniMVC\miniMVC::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIteratorClass()
inherited_from\miniMVC\MM::getIteratorClass()
inherited_from\miniMVC\miniMVC::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::ksort()
inherited_from\miniMVC\MM::ksort()
inherited_from\miniMVC\miniMVC::ksort()
+
+
+
+

Convenience function to load config files

+
load_config(string $name) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\miniMVC::load_config()
+

Parameters

+
+

$name

+string +
+
+
+
+

Function for loading a model into the current class

+
load_model(string $file, array $args) : void
+
+
+

+

Parameters

+
+

$file

+string +
+
+

$args

+array +
+
+
+
+

Function for loading a view

+
load_view(string $file, array $data, bool $return) : mixed
+
+
+

+

Parameters

+
+

$file

+string +
+
+

$data

+array +
+
+

$return

+bool +
+

Returns

+
mixed
+
+
+
+

natcasesort() +

+
natcasesort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natcasesort()
inherited_from\miniMVC\MM::natcasesort()
inherited_from\miniMVC\miniMVC::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natsort()
inherited_from\miniMVC\MM::natsort()
inherited_from\miniMVC\miniMVC::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetExists()
inherited_from\miniMVC\MM::offsetExists()
inherited_from\miniMVC\miniMVC::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetGet()
inherited_from\miniMVC\MM::offsetGet()
inherited_from\miniMVC\miniMVC::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetSet()
inherited_from\miniMVC\MM::offsetSet()
inherited_from\miniMVC\miniMVC::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetUnset()
inherited_from\miniMVC\MM::offsetUnset()
inherited_from\miniMVC\miniMVC::offsetUnset()
+
+
+
+

serialize() +

+
serialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::serialize()
inherited_from\miniMVC\MM::serialize()
inherited_from\miniMVC\miniMVC::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setFlags()
inherited_from\miniMVC\MM::setFlags()
inherited_from\miniMVC\miniMVC::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setIteratorClass()
inherited_from\miniMVC\MM::setIteratorClass()
inherited_from\miniMVC\miniMVC::setIteratorClass()
+
+
+
+

uasort() +

+
uasort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uasort()
inherited_from\miniMVC\MM::uasort()
inherited_from\miniMVC\miniMVC::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uksort()
inherited_from\miniMVC\MM::uksort()
inherited_from\miniMVC\miniMVC::uksort()
+
+
+
+

Convenience function to remove an object from the singleton

+
unload(string $name) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\miniMVC::unload()
+

Parameters

+
+

$name

+string +
+
+
+
+

unserialize() +

+
unserialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::unserialize()
inherited_from\miniMVC\MM::unserialize()
inherited_from\miniMVC\miniMVC::unserialize()
+
+
+

+ Properties

+ 
+

Instance of Page class

+
$page : \miniMVC\Page
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.DB.html b/docs/classes/miniMVC.DB.html new file mode 100644 index 0000000..c346b46 --- /dev/null +++ b/docs/classes/miniMVC.DB.html @@ -0,0 +1,140 @@ + + + + + +miniMVC » \miniMVC\DB + + + + + + + + + + +
+ +
+
+
+ +
+ +
+
+ +
+

Extend PHP's PDO class to add some more functionality

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Indexed singleton method

+
get_instance(string $dbname, array $options) : \miniMVC\DB
+
+
+

+

Parameters

+
+

$dbname

+string +
+
+

$options

+array +
+

Returns

+ +
+
+
+

Returns the last error from the database

+
get_last_error() : string
+
+
+

+

Returns

+
string
+
+
+

+ Properties

+ 
+

DB connection instances

+
$instance : array
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.Data_Store.html b/docs/classes/miniMVC.Data_Store.html new file mode 100644 index 0000000..46d00f9 --- /dev/null +++ b/docs/classes/miniMVC.Data_Store.html @@ -0,0 +1,210 @@ + + + + + +miniMVC » \miniMVC\Data_Store + + + + + + + + + + +
+ +
+ +
+ +
+

Class for using JSON as a key->value data store

+
+

+ + + + + + + + + +
packageminiMVC
subpackageLibraries
+

+ Methods

+
+

Magic function called when cloning an object

+
__clone() 
+
+

+
+
+

Output the data on destruct

+
__destruct() 
+
+

+
+
+

Magic method to simplify isset checking for config options

+
__get(string $key) : mixed
+
+
+

+

Parameters

+
+

$key

+string +
+

Returns

+
mixed
+
+
+
+

Magic method to simplify setting config options

+
__set(string $key, $val) 
+
+
+

+

Parameters

+
+

$key

+string +
+
+

$val

+

mixed

+
+
+
+

Removes a key from the data store

+
del(string $key) : void
+
+
+

+

Parameters

+
+

$key

+string +
+
+
+
+

Return the entire data store object

+
get_all() : object
+
+
+

+

Returns

+
object
+
+
+
+

Static method to retreive current instance +of the singleton

+
get_instance() : \miniMVC\self
+
+
+

+

Returns

+
\miniMVC\self
+
+
+
+

Create and/or load json file

+
__construct() 
+
+

+
+

+ Properties

+ 
+

Settings object represented by the currently loaded JSON file

+
$current 
+
+

+
+ 
+

Singleton instance

+
$instance 
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.MM.html b/docs/classes/miniMVC.MM.html new file mode 100644 index 0000000..aab094c --- /dev/null +++ b/docs/classes/miniMVC.MM.html @@ -0,0 +1,448 @@ + + + + + +miniMVC » \miniMVC\MM + + + + + + + + + + +
+ +
+ +
+ +
+

Class for standalone JSObject objects

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
+
+

+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Create the ArrayObject/JSObject hybrid object

+
__construct($members) 
+
+
+

+

Parameters

+
+

$members

+

array

+
+
+
+

append() +

+
append() 
+
+
+

+ + + +
inherited_fromArrayObject::append()
+
+
+
+

asort() +

+
asort() 
+
+
+

+ + + +
inherited_fromArrayObject::asort()
+
+
+
+

count() +

+
count() 
+
+
+

+ + + +
inherited_fromArrayObject::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
+
+

+ + + +
inherited_fromArrayObject::exchangeArray()
+
+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
+
+

+ + + +
inherited_fromArrayObject::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
+
+

+ + + +
inherited_fromArrayObject::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
+
+

+ + + +
inherited_fromArrayObject::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
+
+

+ + + +
inherited_fromArrayObject::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
+
+

+ + + +
inherited_fromArrayObject::ksort()
+
+
+
+

natcasesort() +

+
natcasesort() 
+
+
+

+ + + +
inherited_fromArrayObject::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
+
+

+ + + +
inherited_fromArrayObject::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
+
+

+ + + +
inherited_fromArrayObject::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
+
+

+ + + +
inherited_fromArrayObject::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
+
+

+ + + +
inherited_fromArrayObject::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
+
+

+ + + +
inherited_fromArrayObject::offsetUnset()
+
+
+
+

serialize() +

+
serialize() 
+
+
+

+ + + +
inherited_fromArrayObject::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
+
+

+ + + +
inherited_fromArrayObject::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
+
+

+ + + +
inherited_fromArrayObject::setIteratorClass()
+
+
+
+

uasort() +

+
uasort() 
+
+
+

+ + + +
inherited_fromArrayObject::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
+
+

+ + + +
inherited_fromArrayObject::uksort()
+
+
+
+

unserialize() +

+
unserialize() 
+
+
+

+ + + +
inherited_fromArrayObject::unserialize()
+
+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.Model.html b/docs/classes/miniMVC.Model.html new file mode 100644 index 0000000..e3b191d --- /dev/null +++ b/docs/classes/miniMVC.Model.html @@ -0,0 +1,705 @@ + + + + + +miniMVC » \miniMVC\Model + + + + + + + + + + +
+ +
+ +
+ +
+

Base Model Class

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
Inherited
+
+

+ + + + + + + + + +
inherited_from\miniMVC\MM::__call()
inherited_from\miniMVC\miniMVC::__call()
+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Initialize the model class

+
__construct(array $args) : void
+
+
+

+

Parameters

+
+

$args

+array +
+
+
+
+

append() +

+
append() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::append()
inherited_from\miniMVC\MM::append()
inherited_from\miniMVC\miniMVC::append()
+
+
+
+

asort() +

+
asort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::asort()
inherited_from\miniMVC\MM::asort()
inherited_from\miniMVC\miniMVC::asort()
+
+
+
+

count() +

+
count() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::count()
inherited_from\miniMVC\MM::count()
inherited_from\miniMVC\miniMVC::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::exchangeArray()
inherited_from\miniMVC\MM::exchangeArray()
inherited_from\miniMVC\miniMVC::exchangeArray()
+
+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getArrayCopy()
inherited_from\miniMVC\MM::getArrayCopy()
inherited_from\miniMVC\miniMVC::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getFlags()
inherited_from\miniMVC\MM::getFlags()
inherited_from\miniMVC\miniMVC::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIterator()
inherited_from\miniMVC\MM::getIterator()
inherited_from\miniMVC\miniMVC::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIteratorClass()
inherited_from\miniMVC\MM::getIteratorClass()
inherited_from\miniMVC\miniMVC::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::ksort()
inherited_from\miniMVC\MM::ksort()
inherited_from\miniMVC\miniMVC::ksort()
+
+
+
+

Convenience function to load config files

+
load_config(string $name) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\miniMVC::load_config()
+

Parameters

+
+

$name

+string +
+
+
+
+

natcasesort() +

+
natcasesort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natcasesort()
inherited_from\miniMVC\MM::natcasesort()
inherited_from\miniMVC\miniMVC::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natsort()
inherited_from\miniMVC\MM::natsort()
inherited_from\miniMVC\miniMVC::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetExists()
inherited_from\miniMVC\MM::offsetExists()
inherited_from\miniMVC\miniMVC::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetGet()
inherited_from\miniMVC\MM::offsetGet()
inherited_from\miniMVC\miniMVC::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetSet()
inherited_from\miniMVC\MM::offsetSet()
inherited_from\miniMVC\miniMVC::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetUnset()
inherited_from\miniMVC\MM::offsetUnset()
inherited_from\miniMVC\miniMVC::offsetUnset()
+
+
+
+

serialize() +

+
serialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::serialize()
inherited_from\miniMVC\MM::serialize()
inherited_from\miniMVC\miniMVC::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setFlags()
inherited_from\miniMVC\MM::setFlags()
inherited_from\miniMVC\miniMVC::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setIteratorClass()
inherited_from\miniMVC\MM::setIteratorClass()
inherited_from\miniMVC\miniMVC::setIteratorClass()
+
+
+
+

uasort() +

+
uasort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uasort()
inherited_from\miniMVC\MM::uasort()
inherited_from\miniMVC\miniMVC::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uksort()
inherited_from\miniMVC\MM::uksort()
inherited_from\miniMVC\miniMVC::uksort()
+
+
+
+

Convenience function to remove an object from the singleton

+
unload(string $name) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\miniMVC::unload()
+

Parameters

+
+

$name

+string +
+
+
+
+

unserialize() +

+
unserialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::unserialize()
inherited_from\miniMVC\MM::unserialize()
inherited_from\miniMVC\miniMVC::unserialize()
+
+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.Output.html b/docs/classes/miniMVC.Output.html new file mode 100644 index 0000000..108abdb --- /dev/null +++ b/docs/classes/miniMVC.Output.html @@ -0,0 +1,654 @@ + + + + + +miniMVC » \miniMVC\Output + + + + + + + + + + +
+ +
+ +
+ +
+

Class for displaying output and setting http headers

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\MM::__call()
+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Initialize the output class

+
__construct() : void
+
+

+
+
+

PHP magic method called when ending the script +Used for outputing HTML

+
__destruct() : void
+
+

+
+
+

append() +

+
append() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::append()
inherited_from\miniMVC\MM::append()
+
+
+
+

Adds text to the output buffer

+
append_output(string $string) 
+
+
+

+

Parameters

+
+

$string

+string +
+
+
+
+

asort() +

+
asort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::asort()
inherited_from\miniMVC\MM::asort()
+
+
+
+

count() +

+
count() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::count()
inherited_from\miniMVC\MM::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::exchangeArray()
inherited_from\miniMVC\MM::exchangeArray()
+
+
+
+

Sends headers and then removes them

+
flush_headers() 
+
+

+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getArrayCopy()
inherited_from\miniMVC\MM::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getFlags()
inherited_from\miniMVC\MM::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getIterator()
inherited_from\miniMVC\MM::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getIteratorClass()
inherited_from\miniMVC\MM::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::ksort()
inherited_from\miniMVC\MM::ksort()
+
+
+
+

natcasesort() +

+
natcasesort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::natcasesort()
inherited_from\miniMVC\MM::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::natsort()
inherited_from\miniMVC\MM::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetExists()
inherited_from\miniMVC\MM::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetGet()
inherited_from\miniMVC\MM::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetSet()
inherited_from\miniMVC\MM::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetUnset()
inherited_from\miniMVC\MM::offsetUnset()
+
+
+
+

serialize() +

+
serialize() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::serialize()
inherited_from\miniMVC\MM::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::setFlags()
inherited_from\miniMVC\MM::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::setIteratorClass()
inherited_from\miniMVC\MM::setIteratorClass()
+
+
+
+

Sets a header for later output

+
set_header(string $key, string $val) 
+
+
+

+

Parameters

+
+

$key

+string +
+
+

$val

+string +
+
+
+
+

Sets the output buffer

+
set_output(string $string) 
+
+
+

+

Parameters

+
+

$string

+string +
+
+
+
+

uasort() +

+
uasort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::uasort()
inherited_from\miniMVC\MM::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::uksort()
inherited_from\miniMVC\MM::uksort()
+
+
+
+

unserialize() +

+
unserialize() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::unserialize()
inherited_from\miniMVC\MM::unserialize()
+
+
+

+ Properties

+ 
+

Content for outputting

+
$buffer : string
+
+

+
+ 
+

HTTP headers to send

+
$headers : array
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.Page.html b/docs/classes/miniMVC.Page.html new file mode 100644 index 0000000..bd46258 --- /dev/null +++ b/docs/classes/miniMVC.Page.html @@ -0,0 +1,1180 @@ + + + + + +miniMVC » \miniMVC\Page + + + + + + + + + + +
+ +
+
+
+ +
+ +
+
+ +
+

Class for building pages

+
+

All methods are chainable, with the exception of the constructor, +build_header(), build_footer(), and _headers() methods.

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
Inherited
+
+

+ + + + + + + + + +
inherited_from\miniMVC\MM::__call()
inherited_from\miniMVC\Output::__call()
+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Set up the page class

+
__construct($controller) : void
+
+
+

+

Parameters

+
+

$controller

+

object

+
+
+
+

call the parent destructor

+
__destruct() : void
+
+

+
+
+

append() +

+
append() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::append()
inherited_from\miniMVC\MM::append()
inherited_from\miniMVC\Output::append()
+
+
+
+

Adds text to the output buffer

+
append_output(string $string) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::append_output()
+

Parameters

+
+

$string

+string +
+
+
+
+

asort() +

+
asort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::asort()
inherited_from\miniMVC\MM::asort()
inherited_from\miniMVC\Output::asort()
+
+
+ +
+

Sets custom page header

+
build_header(bool $html5) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$html5

+bool +
+

Returns

+ +
+
+
+

count() +

+
count() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::count()
inherited_from\miniMVC\MM::count()
inherited_from\miniMVC\Output::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::exchangeArray()
inherited_from\miniMVC\MM::exchangeArray()
inherited_from\miniMVC\Output::exchangeArray()
+
+
+
+

Sends headers and then removes them

+
flush_headers() 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::flush_headers()
+
+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getArrayCopy()
inherited_from\miniMVC\MM::getArrayCopy()
inherited_from\miniMVC\Output::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getFlags()
inherited_from\miniMVC\MM::getFlags()
inherited_from\miniMVC\Output::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIterator()
inherited_from\miniMVC\MM::getIterator()
inherited_from\miniMVC\Output::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::getIteratorClass()
inherited_from\miniMVC\MM::getIteratorClass()
inherited_from\miniMVC\Output::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::ksort()
inherited_from\miniMVC\MM::ksort()
inherited_from\miniMVC\Output::ksort()
+
+
+
+

natcasesort() +

+
natcasesort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natcasesort()
inherited_from\miniMVC\MM::natcasesort()
inherited_from\miniMVC\Output::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::natsort()
inherited_from\miniMVC\MM::natsort()
inherited_from\miniMVC\Output::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetExists()
inherited_from\miniMVC\MM::offsetExists()
inherited_from\miniMVC\Output::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetGet()
inherited_from\miniMVC\MM::offsetGet()
inherited_from\miniMVC\Output::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetSet()
inherited_from\miniMVC\MM::offsetSet()
inherited_from\miniMVC\Output::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::offsetUnset()
inherited_from\miniMVC\MM::offsetUnset()
inherited_from\miniMVC\Output::offsetUnset()
+
+
+
+

Output String

+
output_string(string $string) 
+
+
+

Similar to render(), this is a shortcut +to output a string in the body of the +page.

+

Parameters

+
+

$string

+string +
+
+
+
+

Redirect 303

+
redirect_303(string $url) 
+
+
+

Shortcut function for 303 redirect

+

Parameters

+
+

$url

+string +
+
+
+
+

Render

+
render(string $view, array $data) 
+
+
+

Shortcut function for building a page

+

Parameters

+
+

$view

+string +
+
+

$data

+array +
+
+
+
+

serialize() +

+
serialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::serialize()
inherited_from\miniMVC\MM::serialize()
inherited_from\miniMVC\Output::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setFlags()
inherited_from\miniMVC\MM::setFlags()
inherited_from\miniMVC\Output::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::setIteratorClass()
inherited_from\miniMVC\MM::setIteratorClass()
inherited_from\miniMVC\Output::setIteratorClass()
+
+
+
+

Sets custom base href

+
set_base(string $href) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$href

+string

href

+

Returns

+ +
+
+
+

Sets custom body class

+
set_body_class(string $class) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$class

+string +
+

Returns

+ +
+
+
+

Sets custom body id

+
set_body_id(string $id) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$id

+string +
+

Returns

+ +
+
+
+

Sets a minified css group

+
set_css_group(string $group) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$group

+string +
+

Returns

+ +
+
+
+

Sets custom css tags

+
set_css_tag(string $name, bool $domain, string $media) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$name

+string +
+
+

$domain

+bool +
+
+

$media

+string +
+

Returns

+ +
+
+
+

Sets a minified javascript group for the page footer

+
set_foot_js_group(string $group, bool $debug) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$group

+string +
+
+

$debug

+bool +
+

Returns

+ +
+
+
+

Sets minified javascript group in header

+
set_head_js_group(string $group, bool $debug) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$group

+string +
+
+

$debug

+bool +
+

Returns

+ +
+
+
+

Sets a custom tag in the header

+
set_head_tag(string $tag) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$tag

+string +
+

Returns

+ +
+
+
+

Sets a header for later output

+
set_header(string $key, string $val) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::set_header()
+

Parameters

+
+

$key

+string +
+
+

$val

+string +
+
+
+
+

Set Message

+
set_message(string $type, string $message, bool $return) : void
+
+
+

Adds a message to the page

+

Parameters

+
+

$type

+string +
+
+

$message

+string +
+
+

$return

+bool +
+
+
+
+

Set Meta

+
set_meta(array $meta) : \miniMVC\Page
+
+
+

Sets meta tags, with codeigniter native meta tag helper

+

Parameters

+
+

$meta

+array +
+

Returns

+ +
+
+
+

Sets the output buffer

+
set_output(string $string) 
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::set_output()
+

Parameters

+
+

$string

+string +
+
+
+
+

Sets html title string

+
set_title(string $title) : \miniMVC\Page
+
+
+

+

Parameters

+
+

$title

+string +
+

Returns

+ +
+
+
+

uasort() +

+
uasort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uasort()
inherited_from\miniMVC\MM::uasort()
inherited_from\miniMVC\Output::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::uksort()
inherited_from\miniMVC\MM::uksort()
inherited_from\miniMVC\Output::uksort()
+
+
+
+

unserialize() +

+
unserialize() 
+
Inherited
+
+

+ + + + + + + + + + + + + +
inherited_fromArrayObject::unserialize()
inherited_from\miniMVC\MM::unserialize()
inherited_from\miniMVC\Output::unserialize()
+
+
+
+

Sets server headers and doctype

+
_headers(bool $html5) : \miniMVC\Page
+
+
+

Also sets page mime type, based on if sent as +html or xhtml, and what the target browser +supports

+

Parameters

+
+

$html5

+bool +
+

Returns

+ +
+
+ +
+

Private helper function to generate meta tags

+
_meta(array $params) : string
+
+
+

+

Parameters

+
+

$params

+array +
+

Returns

+
string
+
+
+
+

Script Tag

+
script_tag(string $js, bool $domain) : string
+
+
+

Helper function for making script tags

+

Parameters

+
+

$js

+string +
+
+

$domain

+bool +
+

Returns

+
string
+
+
+

+ Properties

+ 
+

Base tag

+
$base : string
+
+

+
+ 
+

Class(es) to apply to the main body tag

+
$body_class : string
+
+

+
+ 
+

Id to apply to the body tag

+
$body_id : string
+
+

+
+ 
+

Content for outputting

+
$buffer : string
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::$$buffer
+
+
+ 
+

CSS tags for the page

+
$css : string
+
+

+
+ 
+

JS tags for the footer

+
$foot_js : string
+
+

+
+ 
+

JS tags for the header

+
$head_js : string
+
+

+
+ 
+

Additional header tags

+
$head_tags : string
+
+

+
+ 
+

HTTP headers to send

+
$headers : array
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\Output::$$headers
+
+
+ 
+

Meta tags

+
$meta : string
+
+

+
+ 
+

Page title

+
$title : string
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.Session.html b/docs/classes/miniMVC.Session.html new file mode 100644 index 0000000..93f6e95 --- /dev/null +++ b/docs/classes/miniMVC.Session.html @@ -0,0 +1,158 @@ + + + + + +miniMVC » \miniMVC\Session + + + + + + + + + + +
+ +
+
+
+ +
+ +
+
+ +
+

Class to improve handling of PHP sessions

+
+

+ + + + + + + + + +
packageminiMVC
subpackageLibraries
+

+ Methods

+
+

Retreive a session value

+
__get(string $key) : mixed
+
+
+

+

Parameters

+
+

$key

+string +
+

Returns

+
mixed
+
+
+
+

Set a session value

+
__set(string $key, mixed $val) : void
+
+
+

+

Parameters

+
+

$key

+string +
+
+

$val

+mixed +
+
+
+
+

Destroy a session

+
destroy() : void
+
+

+
+
+

Start a session

+
__construct() 
+
+

+
+

+ Properties

+ 
+

Reference to session superglobal

+
$sess : array
+
+

+
+
+
+
+
+
+
+ + diff --git a/docs/classes/miniMVC.miniMVC.html b/docs/classes/miniMVC.miniMVC.html new file mode 100644 index 0000000..225f93f --- /dev/null +++ b/docs/classes/miniMVC.miniMVC.html @@ -0,0 +1,607 @@ + + + + + +miniMVC » \miniMVC\miniMVC + + + + + + + + + + +
+ +
+ +
+ +
+

Base class for the framework

+
+

+ + + + + + + + + +
packageminiMVC
subpackageSystem
+

+ Methods

+
+

Allow calling of array methods on the object and +dynamic methods

+
__call(string $name, array $params) : mixed
+
Inherited
+
+

+ + + +
inherited_from\miniMVC\MM::__call()
+

Parameters

+
+

$name

+string +
+
+

$params

+array +
+

Returns

+
mixed
+
+
+
+

Constructor - Any classes loaded here become subclasses of miniMVC

+
__construct(array $members) 
+
+
+

+

Parameters

+
+

$members

+array +
+
+
+
+

append() +

+
append() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::append()
inherited_from\miniMVC\MM::append()
+
+
+
+

asort() +

+
asort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::asort()
inherited_from\miniMVC\MM::asort()
+
+
+
+

count() +

+
count() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::count()
inherited_from\miniMVC\MM::count()
+
+
+
+

exchangeArray() +

+
exchangeArray() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::exchangeArray()
inherited_from\miniMVC\MM::exchangeArray()
+
+
+
+

getArrayCopy() +

+
getArrayCopy() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getArrayCopy()
inherited_from\miniMVC\MM::getArrayCopy()
+
+
+
+

getFlags() +

+
getFlags() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getFlags()
inherited_from\miniMVC\MM::getFlags()
+
+
+
+

getIterator() +

+
getIterator() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getIterator()
inherited_from\miniMVC\MM::getIterator()
+
+
+
+

getIteratorClass() +

+
getIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::getIteratorClass()
inherited_from\miniMVC\MM::getIteratorClass()
+
+
+
+

ksort() +

+
ksort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::ksort()
inherited_from\miniMVC\MM::ksort()
+
+
+
+

Convenience function to load config files

+
load_config(string $name) 
+
+
+

+

Parameters

+
+

$name

+string +
+
+
+
+

natcasesort() +

+
natcasesort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::natcasesort()
inherited_from\miniMVC\MM::natcasesort()
+
+
+
+

natsort() +

+
natsort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::natsort()
inherited_from\miniMVC\MM::natsort()
+
+
+
+

offsetExists() +

+
offsetExists() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetExists()
inherited_from\miniMVC\MM::offsetExists()
+
+
+
+

offsetGet() +

+
offsetGet() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetGet()
inherited_from\miniMVC\MM::offsetGet()
+
+
+
+

offsetSet() +

+
offsetSet() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetSet()
inherited_from\miniMVC\MM::offsetSet()
+
+
+
+

offsetUnset() +

+
offsetUnset() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::offsetUnset()
inherited_from\miniMVC\MM::offsetUnset()
+
+
+
+

serialize() +

+
serialize() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::serialize()
inherited_from\miniMVC\MM::serialize()
+
+
+
+

setFlags() +

+
setFlags() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::setFlags()
inherited_from\miniMVC\MM::setFlags()
+
+
+
+

setIteratorClass() +

+
setIteratorClass() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::setIteratorClass()
inherited_from\miniMVC\MM::setIteratorClass()
+
+
+
+

uasort() +

+
uasort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::uasort()
inherited_from\miniMVC\MM::uasort()
+
+
+
+

uksort() +

+
uksort() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::uksort()
inherited_from\miniMVC\MM::uksort()
+
+
+
+

Convenience function to remove an object from the singleton

+
unload(string $name) 
+
+
+

+

Parameters

+
+

$name

+string +
+
+
+
+

unserialize() +

+
unserialize() 
+
Inherited
+
+

+ + + + + + + + + +
inherited_fromArrayObject::unserialize()
inherited_from\miniMVC\MM::unserialize()
+
+
+
+
+
+
+
+
+ + diff --git a/docs/deprecated.html b/docs/deprecated.html index a6d1fcd..3f91e15 100644 --- a/docs/deprecated.html +++ b/docs/deprecated.html @@ -32,7 +32,7 @@ Reports