Arbit - project tracking

Dwoo

Browse source code

File: / lib/ dwooAutoload.php

Type
text/plain text/plain
Last Author
seldaek
Version
9315dcc815b5063f6212c06dd2c20b8b75004434
Line Rev. Author Source
1 6075f2 seldaek <?php
2 seldaek
3 9315dc seldaek include dirname(__FILE__) . DIRECTORY_SEPARATOR . 'Dwoo'. DIRECTORY_SEPARATOR . 'Core.php';
4 dd288f Seldaek
5 6075f2 seldaek function dwooAutoload($class)
6 seldaek {
7 9315dc seldaek === 'Dwoo_' || $class === 'Dwoo') {
8 dd288f Seldaek include DWOO_DIRECTORY . strtr($class, '_', DIRECTORY_SEPARATOR).'.php';
9 6075f2 seldaek }
10 seldaek }
11 seldaek
12 seldaek spl_autoload_register('dwooAutoload');