-
Notifications
You must be signed in to change notification settings - Fork 0
/
sassy.php
36 lines (27 loc) · 966 Bytes
/
sassy.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
<?php
/**
* Plugin Name: Sassy
* Plugin URI: http://digitalis.ca/
* Description: “So ripeness climbs the bells of Digitalis, flower by flower, undistracted by a Mind, or a Design, or by desire.
* Version: 1.2.7
* Author: Digitalis Web Build Co.
* Author URI: http://digitalis.ca/
* Text Domain: digitalis
*/
if (!defined('WPINC')) die;
if (defined('SASSY_VERSION')) return;
/* DEFINES */
define('SASSY_VERSION', '1.2.7');
define('SASSY_PATH', plugin_dir_path( __FILE__));
define('SASSY_URI', plugin_dir_url( __FILE__));
define('SASSY_ROOT_FILE', __FILE__);
define('SASSY_PLUGIN_BASE', plugin_basename(__FILE__)); //sassy/sassy.php
define('SASSY_PLUGIN_SLUG', basename(SASSY_PLUGIN_BASE, '.php')); //sassy
//
require_once SASSY_PATH . 'include/sassy.class.php';
function SASSY() {
global $Sassy;
return $Sassy;
}
$Sassy = new Sassy\Sassy();
//