-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquriobot.php
113 lines (96 loc) · 2.43 KB
/
quriobot.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
<?php
/**
* Plugin Name: Quriobot
* Description: Increase conversion with an easy to use chatbot.
* Author: Quriobot
* Author URI: https://quriobot.com/
* Version: 2.9.1
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
* Text Domain: quriobot
*
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
add_action( 'plugins_loaded', 'quriobot_plugin_init' );
function quriobot_plugin_init() {
if ( ! class_exists( 'WP_Quriobot' ) ) :
class WP_Quriobot {
/**
* @var Const Plugin Version Number
*/
const VERSION = '2.9.1';
/**
* @var Singleton The reference the *Singleton* instance of this class
*/
private static $instance;
/**
* Returns the *Singleton* instance of this class.
*
* @return Singleton The *Singleton* instance.
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
public function __clone() {}
public function __wakeup() {}
/**
* Protected constructor to prevent creating a new instance of the
* *Singleton* via the `new` operator from outside of this class.
*/
private function __construct() {
add_action( 'admin_init', array( $this, 'install' ) );
$this->init();
}
/**
* Init the plugin after plugins_loaded so environment variables are set.
*
* @since 1.0.0
*/
public function init() {
require_once( dirname( __FILE__ ) . '/includes/class-quriobot.php' );
$quriobot = new Quriobot();
$quriobot->init();
}
/**
* Updates the plugin version in db
*
* @since 1.0.0
*/
public function update_plugin_version() {
delete_option( 'quriobot_version' );
update_option( 'quriobot_version', self::VERSION );
}
/**
* Handles upgrade routines.
*
* @since 1.0.0
*/
public function install() {
if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) {
return;
}
if ( ( self::VERSION !== get_option( 'quriobot_version' ) ) ) {
$this->update_plugin_version();
}
}
/**
* Adds plugin action links.
*
* @since 1.0.0
*/
public function plugin_action_links( $links ) {
$plugin_links = array(
'<a href="admin.php?page=quriobot-settings">Settings</a>',
'<a href="https://quriobot.com/">Support</a>',
);
return array_merge( $plugin_links, $links );
}
}
WP_Quriobot::get_instance();
endif;
}