PageRenderTime 40ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/broken-link-checker/includes/modules.php

https://bitbucket.org/lgorence/quickpress
PHP | 31 lines | 21 code | 6 blank | 4 comment | 0 complexity | 0c297bb7b4238cb801e2af19f3c9c9f5 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, AGPL-1.0
  1. <?php
  2. /**
  3. * Load all files pertaining to BLC's module subsystem
  4. */
  5. require 'module-manager.php';
  6. require 'module-base.php';
  7. require 'containers.php';
  8. require 'checkers.php';
  9. require 'parsers.php';
  10. $blc_module_manager = blcModuleManager::getInstance(array(
  11. //List of modules active by default
  12. 'http', //Link checker for the HTTP(s) protocol
  13. 'link', //HTML link parser
  14. 'image', //HTML image parser
  15. 'metadata', //Metadata (custom field) parser
  16. 'url_field', //URL field parser
  17. 'blogroll', //Blogroll container
  18. 'comment', //Comment container
  19. 'custom_field', //Post metadata container (aka custom fields)
  20. 'post', //Post content container
  21. 'page', //Page content container
  22. 'dummy', //Dummy container used as a fallback
  23. ));
  24. require 'any-post.php';
  25. ?>