-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-mobile-buttons.php
47 lines (40 loc) · 1.28 KB
/
woocommerce-mobile-buttons.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
<?php
/*
* Plugin Name: Woocommerce Mobile Buttons
* Version: 1.0
* Plugin URI: https://www.kildedal.no
* Description: Changes the mobile buttons for Woocommerce
* Author: Marius Kildedal
* Author URI: https://www.kildedal.no
* Requires at least: 4.0
* Tested up to: 4.0
*
* Text Domain: woocommerce-mobile-buttons
* Domain Path: /lang/
*
* @package WordPress
*
*
*/
if ( ! defined( 'ABSPATH' ) ) exit;
// Load plugin class files
require_once( 'includes/class-woocommerce-mobile-buttons.php' );
require_once( 'includes/class-woocommerce-mobile-buttons-settings.php' );
// Load plugin libraries
require_once( 'includes/lib/class-woocommerce-mobile-buttons-admin-api.php' );
require_once( 'includes/lib/class-woocommerce-mobile-buttons-post-type.php' );
require_once( 'includes/lib/class-woocommerce-mobile-buttons-taxonomy.php' );
/**
* Returns the main instance of Woocommerce_Mobile_Buttons to prevent the need to use globals.
*
* @since 1.0.0
* @return object Woocommerce_Mobile_Buttons
*/
function Woocommerce_Mobile_Buttons () {
$instance = Woocommerce_Mobile_Buttons::instance( __FILE__, '1.0.0' );
if ( is_null( $instance->settings ) ) {
$instance->settings = Woocommerce_Mobile_Buttons_Settings::instance( $instance );
}
return $instance;
}
Woocommerce_Mobile_Buttons();