forked from wp-document-revisions/wp-document-revisions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwp-document-revisions.php
68 lines (64 loc) · 2.32 KB
/
wp-document-revisions.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
Plugin Name: WP Document Revisions
Plugin URI: http://ben.balter.com/2011/08/29/wp-document-revisions-document-management-version-control-wordpress/
Description: A document management and version control plugin for WordPress that allows teams of any size to collaboratively edit files and manage their workflow.
Version: 3.6.1
Requires at least: 4.9
Author: Ben Balter
Author URI: http://ben.balter.com
License: GPL3
Text Domain: wp-document-revisions
Domain Path: /languages
*
@package wp-document-revisions
*/
/**
* WP Document Revisions
*
* A document management and version control plugin for WordPress that allows
* teams of any size to collaboratively edit files and manage their workflow.
*
* Copyright (C) 2011-2024 Ben Balter ( [email protected] -- http://ben.balter.com )
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
* @copyright 2011-2024
* @license GPL v3
* @version 3.6.1
* @package WP_Document_Revisions
* @author Ben Balter <[email protected]>
*/
require_once __DIR__ . '/includes/class-wp-document-revisions.php';
// $wpdr is a global reference to the class.
global $wpdr;
$wpdr = new WP_Document_Revisions();
require_once __DIR__ . '/includes/template-functions.php';
// Activation hooks must be relative to the main plugin file.
register_activation_hook( __FILE__, array( &$wpdr, 'activation_hook' ) );
// polyfill for str_contains.
if ( ! function_exists( 'str_contains' ) ) {
/**
* Provides str_contains function.
*
* @since 3.5.0
*
* @param string $haystack the text to be searched.
* @param string $needle the text to search.
* @returns boolean.
*/
function str_contains( string $haystack, string $needle ) {
return empty( $needle ) || strpos( $haystack, $needle ) !== false;
}
}