Koseven supports the PSR-0 autoloading specification. This allows you to take advantage of PHP autoloading, removing the need to call include or require before using a class. When you use a class Koseven will find and include the class file for you. For instance, when you want to use the [Cookie::set] method, you simply call:
Cookie::set('mycookie', 'any string value');
Or to load an [Encrypt] instance, just call [Encrypt::instance]:
$encrypt = Encrypt::instance();
Classes are loaded via the [KO7::auto_load] method, which makes a simple conversion from class name to file name:
classes/
directory of the filesystemWhen calling a class that has not been loaded (eg: Session_Cookie
), Koseven will search the filesystem using [KO7::find_file] for a file named classes/Session/Cookie.php
.
If your classes do not follow this convention, they cannot be autoloaded by Koseven. You will have to manually included your files, or add your own autoload function.
Koseven's default autoloader is enabled in application/bootstrap.php
using spl_autoload_register:
spl_autoload_register(array('KO7', 'auto_load'));
This allows [KO7::auto_load] to attempt to find and include any class that does not yet exist when the class is first used as long as it follows the PSR-0 specification. If you wish to support the old Kohana filename convention (using lowercase filesnames), an additional autoloader is provided by Koseven:
spl_autoload_register(array('KO7', 'auto_load_lowercase'));
You can easily gain access to other libraries if they include an autoloader. For example, here is how to enable Zend's autoloader so you can use Zend libraries in your Koseven application.
vendor
directory at application/vendor
. This keeps third party software separate from your application classes.application/vendor/Zend
.Somewhere in application/bootstrap.php
, copy the following code:
/**
* Enable Zend Framework autoloading
*/
if ($path = KO7::find_file('vendor', 'Zend/Loader'))
{
ini_set('include_path',
ini_get('include_path').PATH_SEPARATOR.dirname(dirname($path)));
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();
}
You can now autoload any Zend Framework classes from inside your Koseven application.
if ($validate($this->request->post()))
{
$mailer = new Zend_Mail;
$mailer->setBodyHtml($view)
->setFrom(KO7::$config->load('site')->email_from)
->addTo($email)
->setSubject($message)
->send();
}