-
Notifications
You must be signed in to change notification settings - Fork 8
/
.cradle.php
23 lines (22 loc) · 950 Bytes
/
.cradle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php //-->
/**
* This file is part of a package designed for the CradlePHP Project.
*
* Copyright and license information can be found at LICENSE.txt
* distributed with this package.
*/
require_once __DIR__ . '/src/Schema/events.php';
require_once __DIR__ . '/src/Schema/controller.php';
require_once __DIR__ . '/src/Model/events.php';
require_once __DIR__ . '/src/Model/controller.php';
require_once __DIR__ . '/src/Fieldset/events.php';
require_once __DIR__ . '/src/Fieldset/controller.php';
require_once __DIR__ . '/src/Relation/events.php';
require_once __DIR__ . '/src/Relation/controller.php';
//bootstrap
$this
->preprocess(include __DIR__ . '/src/bootstrap/schema.php')
->preprocess(include __DIR__ . '/src/bootstrap/helpers.php')
->preprocess(include __DIR__ . '/src/bootstrap/template.php')
->preprocess(include __DIR__ . '/src/bootstrap/files.php')
->preprocess(include __DIR__ . '/src/bootstrap/fieldset.php');