All.php 398 B

123456789101112131415
  1. <?php
  2. /**
  3. * Contains all annotations for extensions
  4. * NOTE: should be included with require_once
  5. *
  6. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  7. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  8. */
  9. foreach (glob(__DIR__ . "/*.php") as $filename) {
  10. if (basename($filename, '.php') === 'All') {
  11. continue;
  12. }
  13. include_once $filename;
  14. }