forked from woocommerce/woocommerce-shortcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-shortcodes.php
106 lines (88 loc) · 2.44 KB
/
woocommerce-shortcodes.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
<?php
/**
* Plugin Name: WooCommerce Shortcodes
* Plugin URI: https://www.woothemes.com/
* Description: WooCommerce Shortcodes.
* Version: 1.0.0
* Author: WooThemes, Claudio Sanches
* Author URI: http://woothemes.com
* Text Domain: woocommerce-shortcodes
* Domain Path: /languages
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'WooCommerce_Shortcodes' ) ) :
/**
* WooCommerce Shortcodes main class.
*/
class WooCommerce_Shortcodes {
/**
* Plugin version.
*
* @var string
*/
const VERSION = '1.0.0';
/**
* Instance of this class.
*
* @var object
*/
protected static $instance = null;
/**
* Initialize the plugin.
*/
private function __construct() {
// Load plugin text domain
add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
// Checks with WooCommerce is installed.
if ( class_exists( 'WooCommerce' ) ) {
// Admin classes.
if ( is_admin() ) {
$this->admin_includes();
}
} else {
add_action( 'admin_notices', array( $this, 'woocommerce_missing_notice' ) );
}
}
/**
* Return an instance of this class.
*
* @return object A single instance of this class.
*/
public static function get_instance() {
// If the single instance hasn't been set, set it now.
if ( null == self::$instance ) {
self::$instance = new self;
}
return self::$instance;
}
/**
* Load the plugin text domain for translation.
*
* @return void
*/
public function load_plugin_textdomain() {
$locale = apply_filters( 'plugin_locale', get_locale(), 'woocommerce-shortcodes' );
load_textdomain( 'woocommerce-shortcodes', trailingslashit( WP_LANG_DIR ) . 'woocommerce-shortcodes/woocommerce-shortcodes-' . $locale . '.mo' );
load_plugin_textdomain( 'woocommerce-shortcodes', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
/**
* Admin includes.
*
* @return void
*/
public function admin_includes() {
require_once 'includes/class-wc-shortcodes-admin.php';
}
/**
* WooCommerce fallback notice.
*
* @return string
*/
public function woocommerce_missing_notice() {
echo '<div class="error"><p>' . sprintf( __( 'WooCommerce Shortcodes depends on the last version of %s to work!', 'woocommerce-shortcodes' ), '<a href="http://www.woothemes.com/woocommerce/" target="_blank">' . __( 'WooCommerce', 'woocommerce-shortcodes' ) . '</a>' ) . '</p></div>';
}
}
add_action( 'plugins_loaded', array( 'WooCommerce_Shortcodes', 'get_instance' ), 0 );
endif;