PHP Classes

File: core/_addCore.php

Recommend this page to a friend!
  Classes of Marius Zadara   PAX   core/_addCore.php   Download  
File: core/_addCore.php
Role: Auxiliary script
Content type: text/plain
Description: PAX core loader
Class: PAX
Interpret XML command scripts with PHP classes
Author: By
Last change: Path updated
Date: 15 years ago
Size: 718 bytes
 

Contents

Class file image Download
<?php

/**
 * Page DocBlock definition
 * @package org.zadara.marius.pax
 */

/**
 * Core loader.
 * This file will load all the components needed.
 *
 * @author Marius Zadara <marius@zadara.org>
 * @category Loaders
 * @copyright (C) 2008-2009 Marius Zadara
 * @license Free for non-comercial use
 * @package org.zadara.marius.pax
 * @since 5.0
 */

/**
 * @see _addInterfaces.php
 */
require_once 'core/interfaces/_addInterfaces.php';

/**
 * @see _addExceptions.php
 */
require_once 'core/exceptions/_addExceptions.php';

/**
 * @see _addClasses.php
 */
require_once 'core/classes/_addClasses.php';

/**
 * @see _addUtils.php
 */
require_once 'core/utils/_addUtils.php';

?>