PageRenderTime 50ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/classes/renderers/noteParser/_compile.php

https://bitbucket.org/xananax/yelobox
PHP | 15 lines | 15 code | 0 blank | 0 comment | 0 complexity | 071596a0aefc6f592db18418f369bf6d MD5 | raw file
  1. <?php
  2. error_reporting(E_ALL); ini_set('display_errors', '1');
  3. $dir = __DIR__.'/';
  4. $includes = array_merge(
  5. glob($dir.'dev/*.php'),
  6. glob($dir.'/dev/interfaces/*.php'),
  7. glob($dir.'dev/baseclasses/*.php'),
  8. glob($dir.'dev/extendedbaseclasses/*.php'),
  9. glob($dir.'dev/modifiers/*.php'),
  10. glob($dir.'dev/preprocessors/*.php'),
  11. glob($dir.'dev/postprocessors/*.php')
  12. );
  13. require '../../yeloboxCompiler.php';
  14. yeloboxCompile($includes,null,$dir.'bin');
  15. ?>