-
Notifications
You must be signed in to change notification settings - Fork 0
/
samply.php
executable file
·135 lines (116 loc) · 2.85 KB
/
samply.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
/**
* Plugin Name: Samply - WooCommerce Product Sample Solution
* Description: An ultimate plugin to replicate an actual product with custom prices to order as a sample product.
* Plugin URI: https://github.com/beyond88/samply
* Author: Mohiuddin Abdul Kader
* Author URI: https://github.com/beyond88
* Version: 1.0.11
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: samply
* Domain Path: /languages
* Requires PHP: 5.6
* Requires at least: 4.4
* Tested up to: 6.2
* @package Samply
*
* WC requires at least: 3.1
* WC tested up to: 7.0.0
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
if (!defined('ABSPATH')) {
exit;
}
require_once __DIR__ . '/vendor/autoload.php';
/**
* The main plugin class
*/
final class Samply
{
/**
* Plugin version
*
* @var string
*/
const version = '1.0.11';
/**
* Class constructor
*/
private function __construct()
{
$this->define_constants();
register_activation_hook(__FILE__, [$this, 'activate']);
add_action('plugins_loaded', [$this, 'init_plugin']);
}
/**
* Initializes a singleton instance
*
* @return \Samply
*/
public static function init()
{
static $instance = false;
if (!$instance) {
$instance = new self();
}
return $instance;
}
/**
* Define the required plugin constants
*
* @return void
*/
public function define_constants()
{
define('SAMPLY_VERSION', self::version);
define('SAMPLY_FILE', __FILE__);
define('SAMPLY_PATH', __DIR__);
define('SAMPLY_URL', plugins_url('', SAMPLY_FILE));
define('SAMPLY_ASSETS', SAMPLY_URL . '/assets');
define('SAMPLY_BASENAME', plugin_basename(__FILE__));
define('SAMPLY_PLUGIN_NAME', 'Samply');
define('SAMPLY_MIN_WC_VERSION', '3.1');
define('SAMPLY_MINIMUM_PHP_VERSION', '5.6.0');
define('SAMPLY_MINIMUM_WP_VERSION', '4.4');
define('SAMPLY_MINIMUM_WC_VERSION', '3.1');
}
/**
* Initialize the plugin
*
* @return void
*/
public function init_plugin()
{
new Samply\Assets();
new Samply\Samplyi18n();
if (defined('DOING_AJAX') && DOING_AJAX) {
new Samply\Ajax();
}
if (is_admin()) {
new Samply\Admin();
} else {
new Samply\Frontend();
}
}
/**
* Do stuff upon plugin activation
*
* @return void
*/
public function activate()
{
$installer = new Samply\Installer();
$installer->run();
}
}
/**
* Initializes the main plugin
*/
function samply()
{
return Samply::init();
}
// kick-off the plugin
samply();