PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

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

https://bitbucket.org/lgorence/quickpress
PHP | 23 lines | 8 code | 3 blank | 12 comment | 2 complexity | 9c61cca7ac45fb6d45c8af6d64f097ed MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, AGPL-1.0
  1. <?php
  2. /*
  3. Plugin Name: Broken Link Checker
  4. Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
  5. Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
  6. Version: 1.6.2
  7. Author: Janis Elsts
  8. Author URI: http://w-shadow.com/blog/
  9. Text Domain: broken-link-checker
  10. */
  11. //Path to this file
  12. if ( !defined('BLC_PLUGIN_FILE') ){
  13. define('BLC_PLUGIN_FILE', __FILE__);
  14. }
  15. //Path to the plugin's directory
  16. if ( !defined('BLC_DIRECTORY') ){
  17. define('BLC_DIRECTORY', dirname(__FILE__));
  18. }
  19. //Load the actual plugin
  20. require 'core/init.php';