<?php /** * Page DocBlock definition * @package org.zadara.marius.pax */ /** * Interfaces loader. * This file will load all the interfaces needed. * * @author Marius Zadara <hide@address.com> * @category Loaders * @copyright (C) 2008-2009 Marius Zadara * @license Free for non-comercial use * @package org.zadara.marius.pax * @since 5.0 */ /** * General PAX interface. * @see IPAXObject.intf.php */ require_once 'IPAXObject.intf.php'; /** * General config interface. * @see IConfig.intf.php */ require_once 'IConfig.intf.php'; /** * Environment interface. * @see IEnvironment.intf.php */ require_once 'IEnvironment.intf.php'; /** * General tag interface. * @see ITags.intf.php */ require_once 'ITags.intf.php'; /** * Atributes interface. * @see IAttributes.intf.php */ require_once 'IAttributes.intf.php'; /** * Model interface. * @see IModel.intf.php */ require_once 'IModel.intf.php'; /** * Instruction evaluator interface. * @see IInstructionEvaluator.intf.php */ require_once 'IInstructionEvaluator.intf.php'; /** * Instruction extractor interface. * @see IInstructionExtractor.intf.php */ require_once 'IInstructionExtractor.intf.php'; /** * Instruction replacer interface. * @see IInstructionReplacer.intf.php */ require_once 'IInstructionReplacer.intf.php'; /** * Pattern interface. * @see IPattern.intf.php */ require_once 'IPattern.intf.php'; /** * Model interface. * @see IModel.intf.php */ require_once 'IModel.intf.php'; /** * Resource interface. * @see IResource.intf.php */ require_once 'IResource.intf.php'; /** * Directory interface. * @see IDir.intf.php */ require_once 'IDir.intf.php'; /** * File interface. * @see IFile.intf.php */ require_once 'IFile.intf.php'; /** * PAX interface. * @see IPAX.intf.php */ require_once 'IPAX.intf.php'; /** * Node interface. * @see INode.intf.php */ require_once 'INode.intf.php'; ?>