Changeset 2058196
- Timestamp:
- 03/27/2019 10:04:20 AM (7 years ago)
- Location:
- rabbitbuilder-global-central-js-css/trunk
- Files:
-
- 2 edited
-
rabbitbuilder-js-css.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rabbitbuilder-global-central-js-css/trunk/rabbitbuilder-js-css.php
r2058138 r2058196 4 4 * Plugin URI: https://www.rabbitbuilder.com/plugins/rabbitbuilder-js-css 5 5 * Description: Better CSS editing in a central location with scss preprocessing, Supports Elementor Global Styles, Centralised area for CSS editing in Elementor, to keep things tidy and easy to implement, as well as maintain. The current way of doing things, ends up being very messy very quickly, with css code attached to elements here there and everywhere, with no indication for where custom styles are. This Plugin allows you to add your own custom css styles and javascript code with a powerful editor. 6 * Version: 1.0. 06 * Version: 1.0.2 7 7 * Author: RabbitBuilder 8 8 * Author URI: https://www.rabbitbuilder.com/ … … 21 21 * Rename this for your plugin and update it as you release new versions. 22 22 */ 23 define( 'RBJSCSS_PLUGIN_NAME', 'rabbitbuilder_js_css');24 define( 'RBJSCSS_PLUGIN_VERSION', '1.0.0');25 define( 'RBJSCSS_DB_VERSION', '1.0.0');23 define( 'RBJSCSS_PLUGIN_NAME', 'rabbitbuilder_js_css' ); 24 define( 'RBJSCSS_PLUGIN_VERSION', '1.0.0' ); 25 define( 'RBJSCSS_DB_VERSION', '1.0.0' ); 26 26 27 27 28 28 //The code that runs during plugin activation 29 29 register_activation_hook( __FILE__, 'rabbitbuilder_js_css_activate' ); 30 31 30 function rabbitbuilder_js_css_activate() { 32 31 … … 38 37 39 38 //The code that runs after plugins loaded 40 add_action( 'plugins_loaded', 'rabbitbuilder_js_css_check_db');39 add_action( 'plugins_loaded', 'rabbitbuilder_js_css_check_db' ); 41 40 function rabbitbuilder_js_css_check_db() { 42 41 -
rabbitbuilder-global-central-js-css/trunk/readme.txt
r2058181 r2058196 3 3 Author URI: https://www.rabbitbuilder.com/ 4 4 Plugin URI: https://www.rabbitbuilder.com/plugins/rabbitbuilder-js-css 5 Tags: elementor , elementor addons, elementor extensions, elementor modules, page builder, custom css, custom js, global css, central css, scss,preprocessors5 Tags: elementor addons extension module, custom code, custom js, custom css html, scss preprocessors 6 6 Requires at least: 4.7 7 7 Tested up to: 5.1 8 8 Requires PHP: 5.4 9 Stable tag: 1.0.210 9 License: GPLv3 11 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.