forked from thom4parisot/wp-less
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.php
More file actions
23 lines (19 loc) · 802 Bytes
/
bootstrap.php
File metadata and controls
23 lines (19 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*
Plugin Name: WP LESS
Description: LESS extends CSS with variables, mixins, operations and nested rules. This plugin magically parse all your <code>*.less</code> files queued with <code>wp_enqueue_style</code> in WordPress.
Author: Oncle Tom
Version: 1.5.0
Author URI: http://case.oncle-tom.net/
Plugin URI: http://wordpress.org/extend/plugins/wp-less/
This plugin is released under version 3 of the GPL:
http://www.opensource.org/licenses/gpl-3.0.html
*/
if (!class_exists('WPLessPlugin'))
{
require dirname(__FILE__).'/lib/Plugin.class.php';
$WPLessPlugin = WPPluginToolkitPlugin::create('WPLess', __FILE__);
register_activation_hook(__FILE__, array($WPLessPlugin, 'install'));
register_deactivation_hook(__FILE__, array($WPLessPlugin, 'uninstall'));
$WPLessPlugin->dispatch();
}