forked from toxcox/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paypal-digital-download.php
86 lines (70 loc) · 3.32 KB
/
paypal-digital-download.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: PayPal Digital Download
Plugin URI: http://wordpress.org/extend/plugins/paypal-digital-download/
Version: 0.1
Author: Michael Simpson
Description: Provides short code to sell digital files via PayPal
Text Domain: paypal-digital-download
License: GPL3
*/
/*
"WordPress Plugin Template" Copyright (C) 2011 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/>.
*/
$PaypalDigitalDownload_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 PaypalDigitalDownload_noticePhpVersionWrong() {
global $PaypalDigitalDownload_minimalRequiredPhpVersion;
echo '<div class="updated fade">' .
__('Error: plugin "PayPal Digital Download" requires a newer version of PHP to be running.', 'paypal-digital-download').
'<br/>' . __('Minimal version of PHP required: ', 'paypal-digital-download') . '<strong>' . $PaypalDigitalDownload_minimalRequiredPhpVersion . '</strong>' .
'<br/>' . __('Your server\'s PHP version: ', 'paypal-digital-download') . '<strong>' . phpversion() . '</strong>' .
'</div>';
}
function PaypalDigitalDownload_PhpVersionCheck() {
global $PaypalDigitalDownload_minimalRequiredPhpVersion;
if (version_compare(phpversion(), $PaypalDigitalDownload_minimalRequiredPhpVersion) < 0) {
add_action('admin_notices', 'PaypalDigitalDownload_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 PaypalDigitalDownload_i18n_init() {
$pluginDir = dirname(plugin_basename(__FILE__));
load_plugin_textdomain('paypal-digital-download', false, $pluginDir . '/languages/');
}
//////////////////////////////////
// Run initialization
/////////////////////////////////
// First initialize i18n
PaypalDigitalDownload_i18n_init();
// Next, run the version check.
// If it is successful, continue with initialization for this plugin
if (PaypalDigitalDownload_PhpVersionCheck()) {
// Only load and run the init function if we know PHP version can parse it
include_once('paypal-digital-download_init.php');
PaypalDigitalDownload_init(__FILE__);
}