-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfablab-logbook.php
86 lines (70 loc) · 3.13 KB
/
fablab-logbook.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/*
Plugin Name: fablab-logbook
Plugin URI: http://wordpress.org/extend/plugins/fablab-logbook/
Version: 0.1
Author: Boris Fritscher
Description: Manage nfc ids for logbook
Text Domain: fablab-logbook
License: GPLv3
*/
/*
"WordPress Plugin Template" Copyright (C) 2015 Michael Simpson (email : [email protected])
This following part of this file is part of WordPress Plugin Template for WordPress.
WordPress Plugin Template 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.
WordPress Plugin Template 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 Contact Form to Database Extension.
If not, see http://www.gnu.org/licenses/gpl-3.0.html
*/
$FablabLogbook_minimalRequiredPhpVersion = '5.0';
/**
* Check the PHP version and give a useful error message if the user's version is less than the required version
* @return boolean true if version check passed. If false, triggers an error which WP will handle, by displaying
* an error message on the Admin page
*/
function FablabLogbook_noticePhpVersionWrong() {
global $FablabLogbook_minimalRequiredPhpVersion;
echo '<div class="updated fade">' .
__('Error: plugin "fablab-logbook" requires a newer version of PHP to be running.', 'fablab-logbook').
'<br/>' . __('Minimal version of PHP required: ', 'fablab-logbook') . '<strong>' . $FablabLogbook_minimalRequiredPhpVersion . '</strong>' .
'<br/>' . __('Your server\'s PHP version: ', 'fablab-logbook') . '<strong>' . phpversion() . '</strong>' .
'</div>';
}
function FablabLogbook_PhpVersionCheck() {
global $FablabLogbook_minimalRequiredPhpVersion;
if (version_compare(phpversion(), $FablabLogbook_minimalRequiredPhpVersion) < 0) {
add_action('admin_notices', 'FablabLogbook_noticePhpVersionWrong');
return false;
}
return true;
}
/**
* Initialize internationalization (i18n) for this plugin.
* References:
* http://codex.wordpress.org/I18n_for_WordPress_Developers
* http://www.wdmac.com/how-to-create-a-po-language-translation#more-631
* @return void
*/
function FablabLogbook_i18n_init() {
$pluginDir = dirname(plugin_basename(__FILE__));
load_plugin_textdomain('fablab-logbook', false, $pluginDir . '/languages/');
}
//////////////////////////////////
// Run initialization
/////////////////////////////////
// First initialize i18n
FablabLogbook_i18n_init();
// Next, run the version check.
// If it is successful, continue with initialization for this plugin
if (FablabLogbook_PhpVersionCheck()) {
// Only load and run the init function if we know PHP version can parse it
include_once('fablab-logbook_init.php');
FablabLogbook_init(__FILE__);
}