-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbroken-link-checker.php
47 lines (41 loc) · 1.52 KB
/
broken-link-checker.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Broken Link Checker
*
* @link https://wordpress.org/plugins/broken-link-checker/
* @since 1.0.0
* @package broken-link-checker
*
* @wordpress-plugin
* Plugin Name: Broken Link Checker
* Plugin URI: https://wordpress.org/plugins/broken-link-checker/
* Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
* Version: 1.11.21
* Author: WPMU DEV
* Author URI: https://wpmudev.com/
* Text Domain: broken-link-checker
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
/*
Broken Link Checker is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
Broken Link Checker is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Broken Link Checker. If not, see https://www.gnu.org/licenses/gpl-2.0.html.
*/
// Path to this file.
if ( ! defined( 'BLC_PLUGIN_FILE' ) ) {
define( 'BLC_PLUGIN_FILE', __FILE__ );
}
// Path to the plugin's directory.
if ( ! defined( 'BLC_DIRECTORY' ) ) {
define( 'BLC_DIRECTORY', dirname( __FILE__ ) );
}
// Load the actual plugin.
require 'core/init.php';