Changeset 1758623
- Timestamp:
- 11/04/2017 02:16:33 PM (8 years ago)
- Location:
- zen-addons-for-siteorigin-page-builder
- Files:
-
- 55 added
- 3 deleted
- 8 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/.gitignore (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/main.css (added)
-
tags/1.0.1/assets/img (added)
-
tags/1.0.1/assets/index.php (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/main.js (added)
-
tags/1.0.1/core (added)
-
tags/1.0.1/core/basic (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/js (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/js/script.js (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/styles (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/styles/default.less (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/tpl (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/tpl/default.php (added)
-
tags/1.0.1/core/basic/zaso-simple-accordion-widgets/zaso-simple-accordion-widgets.php (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets/styles (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets/styles/default.less (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets/tpl (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets/tpl/default.php (added)
-
tags/1.0.1/core/basic/zaso-spacer-widgets/zaso-spacer-widgets.php (added)
-
tags/1.0.1/core/helpers.php (added)
-
tags/1.0.1/core/index.php (added)
-
tags/1.0.1/core/lib (added)
-
tags/1.0.1/core/lib/css (added)
-
tags/1.0.1/core/lib/js (added)
-
tags/1.0.1/core/shortcodes.php (added)
-
tags/1.0.1/core/widgets.php (added)
-
tags/1.0.1/gulpfile.js (added)
-
tags/1.0.1/index.php (added)
-
tags/1.0.1/lang (added)
-
tags/1.0.1/lang/en_US (added)
-
tags/1.0.1/lang/en_US/zaso-en_US.mo (added)
-
tags/1.0.1/lang/en_US/zaso-en_US.po (added)
-
tags/1.0.1/lang/index.php (added)
-
tags/1.0.1/license.txt (added)
-
tags/1.0.1/package.json (added)
-
tags/1.0.1/readme.txt (added)
-
tags/1.0.1/zen-addons-siteorigin.php (added)
-
trunk/assets/index.php (added)
-
trunk/core/basic/zaso-simple-accordion-widgets/css (deleted)
-
trunk/core/basic/zaso-simple-accordion-widgets/img (deleted)
-
trunk/core/basic/zaso-simple-accordion-widgets/js/script.js (modified) (1 diff)
-
trunk/core/basic/zaso-simple-accordion-widgets/styles (added)
-
trunk/core/basic/zaso-simple-accordion-widgets/styles/default.less (added)
-
trunk/core/basic/zaso-simple-accordion-widgets/tpl/default.php (modified) (1 diff)
-
trunk/core/basic/zaso-simple-accordion-widgets/zaso-simple-accordion-widgets.php (modified) (4 diffs)
-
trunk/core/basic/zaso-spacer-widgets/css (deleted)
-
trunk/core/basic/zaso-spacer-widgets/styles (added)
-
trunk/core/basic/zaso-spacer-widgets/styles/default.less (added)
-
trunk/core/basic/zaso-spacer-widgets/tpl/default.php (modified) (1 diff)
-
trunk/core/basic/zaso-spacer-widgets/zaso-spacer-widgets.php (modified) (4 diffs)
-
trunk/core/index.php (added)
-
trunk/index.php (added)
-
trunk/lang/en_US (added)
-
trunk/lang/en_US/zaso-en_US.mo (added)
-
trunk/lang/en_US/zaso-en_US.po (added)
-
trunk/lang/index.php (added)
-
trunk/license.txt (added)
-
trunk/package.json (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/zen-addons-siteorigin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/js/script.js
r1739278 r1758623 1 1 /* [ZASO] Simple Accordion Template - Main JS */ 2 2 3 (function($) { 3 4 5 // hide all panel by default 4 6 var allPanels = $('.zaso-simple-accordion > dd').hide(); 5 7 6 $('.zaso-simple-accordion > dt > a').click(function(event) { 8 // open state 9 $('.zaso-simple-accordion__content').each(function(index, el) { 10 if ( $(this).hasClass('zaso-simple-accordion--open') ) { 11 $(this).slideDown(); 12 } 13 }); 14 15 // event click 16 $('.zaso-simple-accordion__title').click(function(event) { 17 7 18 event.preventDefault(); 8 allPanels.slideUp(); 9 $(this).parent().next().slideDown(); 19 var currentContent = $(this).next(); 20 21 if ( currentContent.hasClass('zaso-simple-accordion--open') ) { 22 currentContent.slideUp().removeClass('zaso-simple-accordion--open'); 23 } else { 24 currentContent.slideDown().addClass('zaso-simple-accordion--open'); 25 } 26 10 27 return false; 28 11 29 }); 12 30 -
zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/tpl/default.php
r1739278 r1758623 1 1 <?php 2 2 /** 3 * [ZASO] Accordion Template3 * [ZASO] Simple Accordion Template 4 4 * @since 1.0.0 5 5 */ 6 ?>7 6 8 <dl class="zaso-simple-accordion <?php echo $instance['extra_class']; ?>"> 9 <?php foreach ($instance['accordion'] as $a ) : ?> 7 $zaso_accordion_extra_id = ( ! empty( $instance['extra_id'] ) ) ? $instance['extra_id'] : ''; ?> 8 9 <dl <?php printf( 'id="%s"', $zaso_accordion_extra_id ); ?> class="zaso-simple-accordion <?php echo $instance['extra_class']; ?>"> 10 <?php foreach ( $instance['accordion'] as $a ) : ?> 10 11 <dt class="zaso-simple-accordion__title"> 11 <a href="#"><?php echo $a['accordion_field_title']; ?></a>12 <?php echo $a['accordion_field_title']; ?> 12 13 </dt> 13 <dd class="zaso-simple-accordion__content ">14 <p><?php echo $a['accordion_field_content']; ?></p>14 <dd class="zaso-simple-accordion__content <?php echo $a['accordion_field_state']; ?>"> 15 <?php echo $a['accordion_field_content']; ?> 15 16 </dd> 16 17 <?php endforeach; ?> -
zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-simple-accordion-widgets/zaso-simple-accordion-widgets.php
r1739278 r1758623 3 3 * Widget Name: ZASO - Simple Accordion 4 4 * Widget ID: zen-addons-siteorigin-simple-accordion 5 * Description: Create vertically stacked list of items.5 * Description: Create a vertically stacked list of items. 6 6 * Author: DopeThemes 7 * Author URI: http://w ordpress.dopethemes.com7 * Author URI: http://www.dopethemes.com/ 8 8 */ 9 9 … … 19 19 __( 'ZASO - Simple Accordion', 'zaso' ), 20 20 array( 21 'description' => __( 'Createvertically stacked list of items.', 'zaso' ),22 'help' => 'http://wordpress.dopethemes.com/',23 'panels_groups' => array('zaso-plugin-widgets')21 'description' => __( 'Create a vertically stacked list of items.', 'zaso' ), 22 'help' => 'http://www.dopethemes.com/', 23 'panels_groups' => array('zaso-plugin-widgets') 24 24 ), 25 25 array(), … … 29 29 'label' => __( 'Accordion List' , 'zaso' ), 30 30 'item_name' => __( 'Single Item', 'zaso' ), 31 'item_label' => array( 32 'selector' => "[name*='accordion_field_title']", 33 'update_event' => 'change', 34 'value_method' => 'val' 31 'item_label' => array( 32 'selector' => "[name*='accordion_field_title']", 33 'update_event' => 'change', 34 'value_method' => 'val' 35 ), 36 'fields' => array( 37 'accordion_field_title' => array( 38 'type' => 'text', 39 'label' => __( 'Accordion Title' , 'zaso' ) 40 ), 41 'accordion_field_content' => array( 42 'type' => 'tinymce', 43 'label' => __( 'Accordion Content' , 'zaso' ), 44 'row' => 20 45 ), 46 'accordion_field_state' => array( 47 'type' => 'select', 48 'label' => __( 'Accordion Initial State' , 'zaso' ), 49 'options' => array( 50 'zaso-simple-accordion--close' => __( 'Close', 'zaso' ), 51 'zaso-simple-accordion--open' => __( 'Open', 'zaso' ), 52 ) 53 ), 54 ) 55 ), 56 'extra_id' => array( 57 'type' => 'text', 58 'label' => __( 'Extra ID', 'zaso' ), 59 'description' => __( 'Add an extra ID.', 'zaso' ), 60 ), 61 'extra_class' => array( 62 'type' => 'text', 63 'label' => __( 'Extra Class', 'zaso' ), 64 'description' => __( 'Add an extra class for styling overrides.', 'zaso' ), 65 ), 66 'design' => array( 67 'type' => 'section', 68 'label' => __( 'Design', 'zaso' ), 69 'hide' => true, 70 'fields' => array( 71 'heading' => array( 72 'type' => 'section', 73 'label' => __( 'Headings', 'zaso' ), 74 'hide' => true, 75 'fields' => array( 76 'title_background_color' => array( 77 'type' => 'color', 78 'label' => __( 'Background Color', 'zaso' ), 79 'default' => '#e5e5e5', 80 ), 81 'title_background_color_hover' => array( 82 'type' => 'color', 83 'label' => __( 'Background Hover Color', 'zaso' ), 84 'default' => '#d5d5d5', 85 ), 86 'title_font_color' => array( 87 'type' => 'color', 88 'label' => __( 'Font Color', 'zaso' ), 89 'default' => '#333333', 90 ), 91 'title_font_weight' => array( 92 'type' => 'select', 93 'label' => __( 'Font Weight', 'zaso' ), 94 'default' => '700', 95 'options' => array( 96 '100' => __( '100', 'zaso' ), 97 '200' => __( '200', 'zaso' ), 98 '300' => __( '300', 'zaso' ), 99 '400' => __( '400 - Normal', 'zaso' ), 100 '500' => __( '500', 'zaso' ), 101 '600' => __( '600', 'zaso' ), 102 '700' => __( '700 - Bold', 'zaso' ), 103 '800' => __( '800', 'zaso' ), 104 '900' => __( '900', 'zaso' ) 105 ) 106 ), 107 'title_margin' => array( 108 'type' => 'section', 109 'label' => __( 'Margin', 'zaso' ), 110 'hide' => true, 111 'fields' => array( 112 'top' => array( 113 'type' => 'measurement', 114 'label' => __( 'Top', 'zaso' ), 115 'default' => '0px' 116 ), 117 'right' => array( 118 'type' => 'measurement', 119 'label' => __( 'Right', 'zaso' ), 120 'default' => '0px' 121 ), 122 'bottom' => array( 123 'type' => 'measurement', 124 'label' => __( 'Bottom', 'zaso' ), 125 'default' => '0px' 126 ), 127 'left' => array( 128 'type' => 'measurement', 129 'label' => __( 'Left', 'zaso' ), 130 'default' => '0px' 131 ), 132 ), 133 ), 134 'title_padding' => array( 135 'type' => 'section', 136 'label' => __( 'Padding', 'zaso' ), 137 'hide' => true, 138 'fields' => array( 139 'top' => array( 140 'type' => 'measurement', 141 'label' => __( 'Top', 'zaso' ), 142 'default' => '1em' 143 ), 144 'right' => array( 145 'type' => 'measurement', 146 'label' => __( 'Right', 'zaso' ), 147 'default' => '1.2em' 148 ), 149 'bottom' => array( 150 'type' => 'measurement', 151 'label' => __( 'Bottom', 'zaso' ), 152 'default' => '1em' 153 ), 154 'left' => array( 155 'type' => 'measurement', 156 'label' => __( 'Left', 'zaso' ), 157 'default' => '1.2em' 158 ), 159 ), 160 ), 35 161 ), 36 'fields' => array( 37 'accordion_field_title' => array( 38 'type' => 'text', 39 'label' => esc_html__( 'Accordion Title' ) 40 ), 41 'accordion_field_content' => array( 42 'type' => 'tinymce', 43 'label' => esc_html__( 'Accordion Content' ), 44 'row' => 20 45 ), 46 ) 47 ), 48 'list_opening_options' => array( 49 'type' => 'select', 50 'label' => __( 'List Opening Options', 'zaso' ), 51 'description' => __( 'Select an opening options. [Default: Open first item]', 'zaso' ), 52 'default' => '1', 53 'options' => array( 54 'Open first item' => __( 'Open first item', 'zaso' ), 55 'Open all items' => __( 'Open all items', 'zaso' ), 56 'Close all items' => __( 'Close all items', 'zaso' ) 162 ), 163 'panels' => array( 164 'type' => 'section', 165 'label' => __( 'Panels', 'zaso' ), 166 'hide' => true, 167 'fields' => array( 168 'content_background_color' => array( 169 'type' => 'color', 170 'label' => __( 'Background Color', 'zaso' ), 171 'default' => '#f5f5f5', 172 ), 173 'content_font_color' => array( 174 'type' => 'color', 175 'label' => __( 'Font Color', 'zaso' ), 176 'default' => '#333333', 177 ), 178 'content_font_size' => array( 179 'type' => 'measurement', 180 'label' => __( 'Font Size', 'zaso' ), 181 'default' => '1rem', 182 ), 183 'content_margin' => array( 184 'type' => 'section', 185 'label' => __( 'Margin', 'zaso' ), 186 'hide' => true, 187 'fields' => array( 188 'top' => array( 189 'type' => 'measurement', 190 'label' => __( 'Top', 'zaso' ), 191 'default' => '0px' 192 ), 193 'right' => array( 194 'type' => 'measurement', 195 'label' => __( 'Right', 'zaso' ), 196 'default' => '0px' 197 ), 198 'bottom' => array( 199 'type' => 'measurement', 200 'label' => __( 'Bottom', 'zaso' ), 201 'default' => '0px' 202 ), 203 'left' => array( 204 'type' => 'measurement', 205 'label' => __( 'Left', 'zaso' ), 206 'default' => '0px' 207 ), 208 ), 209 ), 210 'content_padding' => array( 211 'type' => 'section', 212 'label' => __( 'Padding', 'zaso' ), 213 'hide' => true, 214 'fields' => array( 215 'top' => array( 216 'type' => 'measurement', 217 'label' => __( 'Top', 'zaso' ), 218 'default' => '1em' 219 ), 220 'right' => array( 221 'type' => 'measurement', 222 'label' => __( 'Right', 'zaso' ), 223 'default' => '1.2em' 224 ), 225 'bottom' => array( 226 'type' => 'measurement', 227 'label' => __( 'Bottom', 'zaso' ), 228 'default' => '0.5em' 229 ), 230 'left' => array( 231 'type' => 'measurement', 232 'label' => __( 'Left', 'zaso' ), 233 'default' => '1.2em' 234 ), 235 ), 236 ), 237 ), 238 ), 57 239 ), 58 240 ), 59 'item_behavior_options' => array(60 'type' => 'select',61 'label' => __( 'Item Behavior Options', 'zaso' ),62 'description' => __( 'Select item behavior. [Default: Open single item only]', 'zaso' ),63 'default' => '1',64 'options' => array(65 'single' => __( 'Open single item only', 'zaso' ),66 'multiple' => __( 'Allow multiple items open', 'zaso' )67 ),68 ),69 'extra_class' => array(70 'type' => 'text',71 'label' => __( 'Extra Class', 'zaso' ),72 'description' => __( 'Add an extra class for styling overrides. [Default: none]', 'zaso' ),73 )74 241 ), 75 242 ZASO_WIDGET_BASIC_DIR … … 78 245 } 79 246 247 function get_less_variables( $instance ) { 248 249 $design = $instance['design']; 250 return array( 251 // accordion title vars 252 'title_background_color' => $design['heading']['title_background_color'], 253 'title_background_color_hover' => $design['heading']['title_background_color_hover'], 254 'title_font_color' => $design['heading']['title_font_color'], 255 'title_font_weight' => $design['heading']['title_font_weight'], 256 'title_margin' => sprintf( '%s %s %s %s', 257 $design['heading']['title_margin']['top'], 258 $design['heading']['title_margin']['right'], 259 $design['heading']['title_margin']['bottom'], 260 $design['heading']['title_margin']['left'] ), 261 'title_padding' => sprintf( '%s %s %s %s', 262 $design['heading']['title_padding']['top'], 263 $design['heading']['title_padding']['right'], 264 $design['heading']['title_padding']['bottom'], 265 $design['heading']['title_padding']['left'] ), 266 267 // accordion content vars 268 'content_background_color' => $design['panels']['content_background_color'], 269 'content_font_size' => $design['panels']['content_font_size'], 270 'content_font_color' => $design['panels']['content_font_color'], 271 'content_margin' => sprintf( '%s %s %s %s', 272 $design['panels']['content_margin']['top'], 273 $design['panels']['content_margin']['right'], 274 $design['panels']['content_margin']['bottom'], 275 $design['panels']['content_margin']['left'] ), 276 'content_padding' => sprintf( '%s %s %s %s', 277 $design['panels']['content_padding']['top'], 278 $design['panels']['content_padding']['right'], 279 $design['panels']['content_padding']['bottom'], 280 $design['panels']['content_padding']['left'] ), 281 ); 282 283 } 284 80 285 function initialize() { 81 82 $this->register_frontend_styles(83 array(84 array(85 'zen-addons-siteorigin-simple-accordion',86 ZASO_WIDGET_BASIC_DIR . basename( dirname( __FILE__ ) ) . '/css/style.css',87 array(),88 ZASO_VERSION89 )90 )91 );92 286 93 287 $this->register_frontend_scripts( -
zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-spacer-widgets/tpl/default.php
r1739278 r1758623 4 4 * @since 1.0.0 5 5 */ 6 ?>7 6 8 <div class="zaso-spacer <?php echo $instance['extra_class']; ?>"> 7 $zaso_spacer_extra_id = ( ! empty( $instance['extra_id'] ) ) ? $instance['extra_id'] : ''; ?> 8 9 <div <?php printf( 'id="%s"', $zaso_spacer_extra_id ); ?> class="zaso-spacer <?php echo $instance['extra_class']; ?>"> 9 10 <div class="zaso-spacer__block" style="<?php printf( 'height: %1$s', $instance['height'] ); ?>"></div> 10 11 </div> -
zen-addons-for-siteorigin-page-builder/trunk/core/basic/zaso-spacer-widgets/zaso-spacer-widgets.php
r1739278 r1758623 3 3 * Widget Name: ZASO - Spacer 4 4 * Widget ID: zen-addons-siteorigin-spacer 5 * Description: Create empty space between elements.5 * Description: Create an empty space between elements. 6 6 * Author: DopeThemes 7 * Author URI: http://w ordpress.dopethemes.com7 * Author URI: http://www.dopethemes.com/ 8 8 */ 9 9 … … 19 19 __( 'ZASO - Spacer', 'zaso' ), 20 20 array( 21 'description' => __( 'Create empty space between elements.', 'zaso' ),22 'help' => 'http://w ordpress.dopethemes.com/',21 'description' => __( 'Create an empty space between elements.', 'zaso' ), 22 'help' => 'http://www.dopethemes.com/', 23 23 'panels_groups' => array('zaso-plugin-widgets') 24 24 ), … … 31 31 'description' => __( 'Set empty space height.', 'zaso' ), 32 32 ), 33 'extra_id' => array( 34 'type' => 'text', 35 'label' => __( 'Extra ID', 'zaso' ), 36 'description' => __( 'Add an extra ID.', 'zaso' ), 37 ), 33 38 'extra_class' => array( 34 39 'type' => 'text', 35 40 'label' => __( 'Extra Class', 'zaso' ), 36 41 'description' => __( 'Add an extra class for styling overrides.', 'zaso' ), 42 ), 43 'design' => array( 44 'type' => 'section', 45 'label' => __( 'Design', 'zaso' ), 46 'hide' => true, 47 'fields' => array( 48 'background_color' => array( 49 'type' => 'color', 50 'label' => __( 'Background Color', 'zaso' ), 51 'default' => '' 52 ) 53 ) 37 54 ) 38 55 ), … … 42 59 } 43 60 61 function get_less_variables( $instance ) { 62 63 return array( 64 'background_color' => $instance['design']['background_color'] 65 ); 66 67 } 68 44 69 function initialize() { 45 46 $this->register_frontend_styles(47 array(48 array(49 'zen-addons-siteorigin-spacer',50 ZASO_WIDGET_BASIC_DIR . basename( dirname( __FILE__ ) ) . '/css/style.css',51 array(),52 ZASO_VERSION53 )54 )55 );56 70 57 71 } -
zen-addons-for-siteorigin-page-builder/trunk/package.json
r1739278 r1758623 1 1 { 2 "name": "zen-addons- siteorigin",3 "version": "1.0. 0",4 "description": "=== Zen Addons for SiteOrigin Page Builder ===\r Contributors: ksym04\r Tags: zas, zen, addons, siteorigin, widgets, form, repeater, content, page, builder\r Requires at least: 3.6.0\r Tested up to: 4.9.0\r Stable tag: 4.4.11\r License: GPLv2 or later\r License URI: http://www.gnu.org/licenses/gpl-2.0.html",2 "name": "zen-addons-for-siteorigin-page-builder", 3 "version": "1.0.1", 4 "description": "=== Zen Addons for SiteOrigin Page Builder ===\r Contributors: ksym04\r Tags: zas, zen, addons, siteorigin, zaso, widgets, form, repeater, content, page, builder\r Requires at least: 3.6.0\r Tested up to: 4.8.3\r Stable tag: 1.0.1\r License: GPLv2 or later\r License URI: license.txt", 5 5 "main": "gulpfile.js", 6 6 "scripts": { … … 9 9 "repository": { 10 10 "type": "git", 11 "url": "git+https:// pkvillanueva@bitbucket.org/KSym04/zen-addons-siteorigin.git"11 "url": "git+https://github.com/KSym04/zen-addons-for-siteorigin-page-builder.git" 12 12 }, 13 13 "author": "", 14 14 "license": "ISC", 15 "homepage": "https:// bitbucket.org/KSym04/zen-addons-siteorigin#readme",15 "homepage": "https://github.com/KSym04/zen-addons-for-siteorigin-page-builder", 16 16 "devDependencies": { 17 17 "autoprefixer": "^7.1.4", -
zen-addons-for-siteorigin-page-builder/trunk/readme.txt
r1739302 r1758623 1 1 === Zen Addons for SiteOrigin Page Builder === 2 2 Contributors: ksym04 3 Tags: zas, zen, addons, siteorigin, widgets, form, repeater, content, page, builder3 Tags: zas, zen, addons, siteorigin, zaso, widgets, form, repeater, content, page, builder 4 4 Requires at least: 3.6.0 5 Tested up to: 4.8. 26 Stable tag: 1.0. 05 Tested up to: 4.8.3 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html8 License URI: license.txt 9 9 10 Ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin.10 An ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin. 11 11 12 12 == Description == … … 15 15 16 16 = Widget Features = 17 * Spacer, create empty space between elements.18 * Simple Accordion, create vertically stacked list of items.17 * Spacer, create an empty space between elements. 18 * Simple Accordion, create a vertically stacked list of items. 19 19 20 20 Once you enable the extension widget, you’ll be able to use it anywhere standard widgets are used. You can manage your widgets by going to Plugins > SiteOrigin Widgets in your WordPress admin backend. 21 21 22 22 23 == Installation == … … 28 29 Note: Our widgets have prefix name 'ZASO -' indicating our SiteOrigin plugin extension. 29 30 31 30 32 == Changelog == 33 = 1.0.1 = 34 * Added simple accordion design panel 35 * Added spacer design panel 36 * Added field 'Extra ID' on widgets 37 * Fixed minor issue 38 * Added en_US language file 31 39 32 40 = 1.0.0 = 33 [03/23/2017]34 41 * Initial Release 42 43 44 == Language Support == 45 - English -
zen-addons-for-siteorigin-page-builder/trunk/zen-addons-siteorigin.php
r1739278 r1758623 2 2 /* 3 3 Plugin Name: Zen Addons for SiteOrigin Page Builder 4 Description: Ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin. 5 Version: 1.0.0 4 Description: An ultimate collection of functional, professional and intuitive widgets extension for SiteOrigin. 5 Version: 1.0.1 6 Author: DopeThemes 7 Author URI: http://www.dopethemes.com/ 8 Plugin URI: http://www.dopethemes.com/downloads/zen-addons-siteorigin/ 9 Copyright: DopeThemes 6 10 Text Domain: zaso 7 11 Domain Path: /lang 8 Author: DopeThemes9 Copyright: DopeThemes10 12 License: GPLv2 or later 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 Author URI: http://wordpress.dopethemes.com 13 Plugin URI: http://wordpress.dopethemes.com/zen-addons-siteorigin/ 14 Domain Path: /lang 13 License URI: license.txt 15 14 */ 16 15 … … 23 22 24 23 // vars 25 var $version = '1.0. 0';24 var $version = '1.0.1'; 26 25 27 26 /* … … 112 111 113 112 // register 114 wp_register_style( 'zen-addons-base', ZASO_BASE_DIR . 'assets/css/main. min.css', array(), ZASO_VERSION );113 wp_register_style( 'zen-addons-base', ZASO_BASE_DIR . 'assets/css/main.css', array(), ZASO_VERSION ); 115 114 116 115 // init … … 130 129 131 130 // register 132 wp_register_script( 'zen-addons-base', ZASO_BASE_DIR . 'assets/js/main. min.js', array('jquery'), ZASO_VERSION );131 wp_register_script( 'zen-addons-base', ZASO_BASE_DIR . 'assets/js/main.js', array('jquery'), ZASO_VERSION ); 133 132 134 133 // init
Note: See TracChangeset
for help on using the changeset viewer.