123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Contains all annotations for extensions
- * NOTE: should be included with require_once
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Mapping.Annotation
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- include __DIR__.'/Language.php';
- include __DIR__.'/Locale.php';
- include __DIR__.'/Loggable.php';
- include __DIR__.'/Slug.php';
- include __DIR__.'/SoftDeleteable.php';
- include __DIR__.'/SortableGroup.php';
- include __DIR__.'/SortablePosition.php';
- include __DIR__.'/Timestampable.php';
- include __DIR__.'/Translatable.php';
- include __DIR__.'/TranslationEntity.php';
- include __DIR__.'/Tree.php';
- include __DIR__.'/TreeClosure.php';
- include __DIR__.'/TreeLeft.php';
- include __DIR__.'/TreeLevel.php';
- include __DIR__.'/TreeLockTime.php';
- include __DIR__.'/TreeParent.php';
- include __DIR__.'/TreePath.php';
- include __DIR__.'/TreePathSource.php';
- include __DIR__.'/TreeRight.php';
- include __DIR__.'/TreeRoot.php';
- include __DIR__.'/Versioned.php';
|