Noumenal-PHP-Library icon indicating copy to clipboard operation
Noumenal-PHP-Library copied to clipboard

PHP Source and General Resources

Noumenal PHP Library

PHP Classes. Mainly extensions to Zend Framework.

Email bug reports to [email protected]

License

These source files are subject to the new BSD license that is bundled with this package in the file noumenal-new-bsd-licence.txt. It is also available through the world-wide-web at this URL:

http://noumenal.co.uk/license/new-bsd/

If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to [email protected] so we can send you a copy immediately.

Attribution

Beyond maintaining the Copyright Notice and Licence, attribution is appreciated but not required. Please attribute where appropriate by linking to:

http://noumenal.co.uk/

Installation and Autoloading

Copy the folder library/Noumenal into your application's include path. The Noumenal Library assumes that you have autoloading enabled.

If using ZF >= v1.9.0 register the Noumeal_ namespace with the autoloader in your bootstrap:

$loader = Zend_Loader_Autoloader::getInstance();
$loader->registerNamespace('Noumenal_');

Registering View Helpers

Add the path and prefix for Noumenal View Helpers in your bootstrap.

Minimally:

$view = new Zend_View;
$view->addHelperPath('Noumenal/View/Helper','Noumenal_View_Helper');

See A Fading Tan's PHP Label for more details.