PHP Classes

File: init.php

Recommend this page to a friend!
  Classes of Barclay   Claw   init.php   Download  
File: init.php
Role: Application script
Content type: text/plain
Description: Claw framework's startup point
Class: Claw
Rapid development MVC framework for PHP 5
Author: By
Last change:
Date: 17 years ago
Size: 380 bytes
 

Contents

Class file image Download
<?php

/**
 * Claw framework's startup point
 *
 * @package claw
 * @author Tomas Varaneckas <tomas [dot] varaneckas [at] gmail [dot] com>
 * @version $Id: init.php 120 2006-03-19 19:26:44Z spajus $
 */

require_once 'core/Namespaces.php';

Namespaces::importBaseDir('core');
Namespaces::importBaseDir('ext');
Namespaces::importBaseDir('cfg');
Namespaces::importBaseDir('ifc');
?>