-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.php
28 lines (26 loc) · 1.01 KB
/
bootstrap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* MUTicket.
*
* @copyright Michael Ueberschaer (MU)
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
* @package MUTicket
* @author Michael Ueberschaer <[email protected]>.
* @link http://www.webdesign-in-bremen.com
* @link http://zikula.org
* @version Generated by ModuleStudio 0.6.1 (http://modulestudio.de) at Sat Aug 31 12:39:20 CEST 2013.
*/
/**
* Bootstrap called when application is first initialised at runtime.
*
* This is only called once, and only if the core has reason to initialise this module,
* usually to dispatch a controller request or API.
*
* For example you can register additional AutoLoaders with ZLoader::addAutoloader($namespace, $path)
* whereby $namespace is the first part of the PEAR class name
* and $path is the path to the containing folder.
*/
// initialise doctrine extension listeners
$helper = ServiceUtil::getService('doctrine_extensions');
$helper->getListener('timestampable');
$helper->getListener('standardfields');