. * * @author TechFuze * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) * @copyright Copyright (c) 1996 - 2015, Free Software Foundation, Inc. (http://www.fsf.org/) * @license http://opensource.org/licenses/GPL-3.0 GPLv3 License * * @link http://fuzeworks.techfuze.net * @since Version 0.0.1 * * @version Version 0.0.1 */ namespace Application; use FuzeWorks\Bus; /** * Class init. * * This class will be loaded before the a controller is loaded. Handy to do some we-need-to-do-this-all-the-time-things like setting locales or importing functions. * Can also be used to authenticate users and provide all views with sessionData. * Will only be loaded if the default callable is used. * * @author Abel Hoogeveen * @copyright Copyright (c) 2013 - 2016, Techfuze. (http://techfuze.net) */ class Init extends Bus { /** * Constructor. * * @param \FuzeWorks\Core $core Pointer to core class */ public function __construct(&$core) { parent::__construct($core); } }