Changeset 2166476
- Timestamp:
- 10/01/2019 03:53:06 PM (7 years ago)
- Location:
- echelon-so/trunk
- Files:
-
- 47 edited
-
acf/widgets/eso-acf-field/eso-acf-field.php (modified) (1 diff)
-
echelon-so.php (modified) (4 diffs)
-
features/cell-flex/cell-flex.php (modified) (1 diff)
-
features/helper-css/helper-css.php (modified) (1 diff)
-
inc/customiser.php (modified) (12 diffs)
-
inc/less/less.php (modified) (1 diff)
-
inc/less/uikit-src/components/flex.less (modified) (4 diffs)
-
inc/less/uikit-src/components/text.less (modified) (2 diffs)
-
inc/modifiers.php (modified) (1 diff)
-
readme.txt (modified) (5 diffs)
-
widgets/eso-before-after/eso-before-after.php (modified) (2 diffs)
-
widgets/eso-button/eso-button.php (modified) (5 diffs)
-
widgets/eso-card/eso-card.php (modified) (2 diffs)
-
widgets/eso-comment/eso-comment.php (modified) (4 diffs)
-
widgets/eso-comment/tpl/default.php (modified) (1 diff)
-
widgets/eso-comment/tpl/wide.php (modified) (1 diff)
-
widgets/eso-count-query-result/eso-count-query-result.php (modified) (7 diffs)
-
widgets/eso-counter/eso-counter.php (modified) (6 diffs)
-
widgets/eso-counter/tpl/default.php (modified) (2 diffs)
-
widgets/eso-custom-loop/eso-custom-loop.php (modified) (2 diffs)
-
widgets/eso-description-list/eso-description-list.php (modified) (3 diffs)
-
widgets/eso-divider/eso-divider.php (modified) (5 diffs)
-
widgets/eso-feature/eso-feature.php (modified) (2 diffs)
-
widgets/eso-filter/eso-filter.php (modified) (1 diff)
-
widgets/eso-heading/eso-heading.php (modified) (2 diffs)
-
widgets/eso-icon-list/eso-icon-list.php (modified) (3 diffs)
-
widgets/eso-lightbox-component-image/eso-lightbox-component-image.php (modified) (3 diffs)
-
widgets/eso-lightbox-gallery/eso-lightbox-gallery.php (modified) (3 diffs)
-
widgets/eso-modal/eso-modal.php (modified) (3 diffs)
-
widgets/eso-nav/eso-nav.php (modified) (1 diff)
-
widgets/eso-off-canvas/eso-off-canvas.php (modified) (3 diffs)
-
widgets/eso-overlay/eso-overlay.php (modified) (3 diffs)
-
widgets/eso-pricing/eso-pricing.php (modified) (3 diffs)
-
widgets/eso-radial/eso-radial.php (modified) (2 diffs)
-
widgets/eso-radial/tpl/default.php (modified) (1 diff)
-
widgets/eso-reuse-layout/eso-reuse-layout.php (modified) (2 diffs)
-
widgets/eso-slabtext/eso-slabtext.php (modified) (2 diffs)
-
widgets/eso-slider/eso-slider.php (modified) (5 diffs)
-
widgets/eso-slider/tpl/default.php (modified) (1 diff)
-
widgets/eso-smooth-scroll/eso-smooth-scroll.php (modified) (2 diffs)
-
widgets/eso-tabs/eso-tabs.php (modified) (3 diffs)
-
widgets/eso-tabs/tpl/default.php (modified) (1 diff)
-
widgets/eso-template-tag/eso-template-tag.php (modified) (3 diffs)
-
widgets/eso-text-rotator/eso-text-rotator.php (modified) (3 diffs)
-
widgets/eso-text/eso-text.php (modified) (2 diffs)
-
widgets/eso-twitter-feed/eso-twitter-feed.php (modified) (3 diffs)
-
widgets/eso-video/eso-video.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
echelon-so/trunk/acf/widgets/eso-acf-field/eso-acf-field.php
r2140170 r2166476 15 15 __('E: ACF Field', 'echelon-so' ), 16 16 array( 17 'description' => __('Display a nACF field.', 'echelon-so' ),17 'description' => __('Display a supported ACF field.', 'echelon-so' ), 18 18 ), 19 19 array(), -
echelon-so/trunk/echelon-so.php
r2148033 r2166476 4 4 Plugin URI: https://echelonso.com 5 5 Description: Echelon widgets and features for SiteOrigin Page Builder. 6 Version: 2.0. 26 Version: 2.0.3 7 7 Author: Echelon 8 8 Author URI: https://echelonso.com … … 102 102 add_action( 'admin_notices', array($this, 'admin_notices') ); 103 103 add_action( 'wp_head', array($this, 'wp_head')); 104 105 104 } 106 105 … … 119 118 120 119 public function current_version() { 121 return '2.0.2'; 122 } 123 124 /* 125 * Widget Group 126 */ 127 128 function widget_group($tabs) { 129 $tabs[] = array( 130 'title' => __('Echelon Widgets', 'mytheme'), 131 'filter' => array( 132 'groups' => array('echelon') 133 ) 134 ); 135 136 return $tabs; 120 return '2.0.3'; 137 121 } 138 122 … … 160 144 add_filter( 'siteorigin_widgets_field_class_prefixes', array($this, 'widget_fields_class_prefixes') ); 161 145 add_filter( 'siteorigin_widgets_field_class_paths', array($this, 'widget_fields_class_paths') ); 162 add_filter( 'siteorigin_panels_widget_dialog_tabs', array($this, 'widget_group'), 20 );163 146 164 147 if (class_exists('ACF')) { -
echelon-so/trunk/features/cell-flex/cell-flex.php
r2148033 r2166476 34 34 '0' => __('-', 'echelon-so'), 35 35 'uk-flex-left' => __('Left', 'echelon-so'), 36 'uk-flex-left-s' => __('Left Above Small', 'echelon-so'),37 'uk-flex-left-m' => __('Left Above Medium', 'echelon-so'),38 'uk-flex-left-l' => __('Left Above Large', 'echelon-so'),39 'uk-flex-left-xl' => __('Left Above xLarge', 'echelon-so'),40 36 'uk-flex-center' => __('Center', 'echelon-so'), 41 'uk-flex-center-s' => __('Center Above Small', 'echelon-so'),42 'uk-flex-center-m' => __('Center Above Medium', 'echelon-so'),43 'uk-flex-center-l' => __('Center Above Large', 'echelon-so'),44 'uk-flex-center-xl' => __('Center Above xLarge', 'echelon-so'),45 37 'uk-flex-right' => __('Right', 'echelon-so'), 46 'uk-flex-right-s' => __('Right Above Small', 'echelon-so'),47 'uk-flex-right-m' => __('Right Above Medium', 'echelon-so'),48 'uk-flex-right-l' => __('Right Above Large', 'echelon-so'),49 'uk-flex-right-xl' => __('Right Above xLarge', 'echelon-so'),50 38 ) 51 39 ); -
echelon-so/trunk/features/helper-css/helper-css.php
r2148033 r2166476 102 102 ); 103 103 104 105 106 104 // text align - 110 107 105 -
echelon-so/trunk/inc/customiser.php
r2148033 r2166476 39 39 40 40 $wp_customize->add_section( 'echelonso_section_features', array( 41 'title' => __( ' Features','echelon-so' ),41 'title' => __( 'Enable / Disable Features','echelon-so' ), 42 42 'description' => __( 'Turn Echelon panels features on or off.', 'echelon-so' ), 43 43 'panel' => 'echelonso_panel_main', … … 212 212 213 213 $wp_customize->add_section( 'echelonso_section_custom_palette', array( 214 'title' => __( 'Custom Palette ','echelon-so' ),214 'title' => __( 'Custom Palette Colors','echelon-so' ), 215 215 'description' => __( 'Set custom colors for use in color picker.', 'echelon-so' ), 216 216 'panel' => 'echelonso_panel_main', … … 374 374 375 375 /* 376 * SECTION: Typography377 */ 378 379 $wp_customize->add_section( 'echelonso_section_less_t ypography', array(380 'title' => __( 'T ypography','echelon-so' ),381 'description' => __( 'Be advised theme options may interfere with or overide typography.', 'echelon-so' ),376 * SECTION: text 377 */ 378 379 $wp_customize->add_section( 'echelonso_section_less_text', array( 380 'title' => __( 'Text','echelon-so' ), 381 'description' => __( 'Be advised theme options may interfere with or overide Text settings.', 'echelon-so' ), 382 382 'panel' => 'echelonso_panel_main', 383 383 'priority' => 5200, … … 394 394 'type' => 'number', 395 395 'priority' => 10, 396 'section' => 'echelonso_section_less_t ypography',397 'label' => __( ' Font Size(rem)' ),396 'section' => 'echelonso_section_less_text', 397 'label' => __( 'Default (rem)' ), 398 398 'description' => __( 'Default: 1', 'echelon-so' ), 399 399 ) ); … … 409 409 'type' => 'number', 410 410 'priority' => 20, 411 'section' => 'echelonso_section_less_t ypography',411 'section' => 'echelonso_section_less_text', 412 412 'label' => __( 'Line Height' ), 413 413 'description' => __( 'Default: 1.5', 'echelon-so' ), … … 424 424 'type' => 'number', 425 425 'priority' => 30, 426 'section' => 'echelonso_section_less_t ypography',427 'label' => __( 'Small Font Size(rem)' ),426 'section' => 'echelonso_section_less_text', 427 'label' => __( 'Small (rem)' ), 428 428 'description' => __( 'Default: 0.875', 'echelon-so' ), 429 429 ) ); … … 439 439 'type' => 'number', 440 440 'priority' => 40, 441 'section' => 'echelonso_section_less_t ypography',442 'label' => __( 'Medium Font Size(rem)' ),441 'section' => 'echelonso_section_less_text', 442 'label' => __( 'Medium (rem)' ), 443 443 'description' => __( 'Default: 1.25', 'echelon-so' ), 444 444 ) ); … … 454 454 'type' => 'number', 455 455 'priority' => 50, 456 'section' => 'echelonso_section_less_t ypography',457 'label' => __( 'Large Font Size(rem)' ),456 'section' => 'echelonso_section_less_text', 457 'label' => __( 'Large (rem)' ), 458 458 'description' => __( 'Default: 1.5', 'echelon-so' ), 459 459 ) ); … … 469 469 'type' => 'number', 470 470 'priority' => 60, 471 'section' => 'echelonso_section_less_t ypography',472 'label' => __( ' xLarge Font Size (rem)' ),471 'section' => 'echelonso_section_less_text', 472 'label' => __( 'Extra Large (rem)' ), 473 473 'description' => __( 'Default: 2', 'echelon-so' ), 474 474 ) ); … … 484 484 'type' => 'number', 485 485 'priority' => 70, 486 'section' => 'echelonso_section_less_t ypography',487 'label' => __( ' 2xLarge Font Size (rem)' ),486 'section' => 'echelonso_section_less_text', 487 'label' => __( 'Extra Extra Large (rem)' ), 488 488 'description' => __( 'Default: 2.625', 'echelon-so' ), 489 489 ) ); … … 884 884 'priority' => 30, 885 885 'section' => 'echelonso_section_less_heading', 886 'label' => __( ' xLarge (rem)' ),886 'label' => __( 'Extra Large (rem)' ), 887 887 'description' => __( 'Default: 8', 'echelon-so' ), 888 888 ) ); … … 899 899 'priority' => 40, 900 900 'section' => 'echelonso_section_less_heading', 901 'label' => __( ' 2xLarge (rem)' ),901 'label' => __( 'Extra Extra Large (rem)' ), 902 902 'description' => __( 'Default: 11', 'echelon-so' ), 903 903 ) ); -
echelon-so/trunk/inc/less/less.php
r2148033 r2166476 43 43 $less_vars['height-large-height'] = (isset($options['height-large-height']) ? $options['height-large-height'] : '450') . 'px'; 44 44 45 // t ypography- done45 // text - done 46 46 $less_vars['global-font-size'] = (isset($options['global-font-size']) ? $options['global-font-size'] : '1') . 'rem'; 47 47 $less_vars['global-line-height'] = (isset($options['global-line-height']) ? $options['global-line-height'] : '1.5'); -
echelon-so/trunk/inc/less/uikit-src/components/flex.less
r2148033 r2166476 49 49 .uk-flex-around\@s { justify-content: space-around; } 50 50 51 .uk-flex-left-s { justify-content: flex-start; }52 .uk-flex-center-s { justify-content: center; }53 .uk-flex-right-s { justify-content: flex-end; }54 .uk-flex-between-s { justify-content: space-between; }55 .uk-flex-around-s { justify-content: space-around; }56 57 51 } 58 52 … … 66 60 .uk-flex-around\@m { justify-content: space-around; } 67 61 68 .uk-flex-left-m { justify-content: flex-start; }69 .uk-flex-center-m { justify-content: center; }70 .uk-flex-right-m { justify-content: flex-end; }71 .uk-flex-between-m { justify-content: space-between; }72 .uk-flex-around-m { justify-content: space-around; }73 74 62 } 75 63 … … 83 71 .uk-flex-around\@l { justify-content: space-around; } 84 72 85 .uk-flex-left-l { justify-content: flex-start; }86 .uk-flex-center-l { justify-content: center; }87 .uk-flex-right-l { justify-content: flex-end; }88 .uk-flex-between-l { justify-content: space-between; }89 .uk-flex-around-l { justify-content: space-around; }90 91 73 } 92 74 … … 99 81 .uk-flex-between\@xl { justify-content: space-between; } 100 82 .uk-flex-around\@xl { justify-content: space-around; } 101 102 .uk-flex-left-xl { justify-content: flex-start; }103 .uk-flex-center-xl { justify-content: center; }104 .uk-flex-right-xl { justify-content: flex-end; }105 .uk-flex-between-xl { justify-content: space-between; }106 .uk-flex-around-xl { justify-content: space-around; }107 83 108 84 } -
echelon-so/trunk/inc/less/uikit-src/components/text.less
r2148033 r2166476 247 247 248 248 } 249 249 250 .hook-text-meta() { 250 251 251 252 } 253 252 254 .hook-text-small() { 253 255 254 256 } 257 255 258 .hook-text-large() { 256 259 257 260 } 261 258 262 .hook-text-background() { 259 263 260 264 } 265 261 266 .hook-text-misc() { 262 267 … … 297 302 } 298 303 .hook-inverse-text-meta() { 299 300 } 304 305 } -
echelon-so/trunk/inc/modifiers.php
r2148033 r2166476 55 55 'uk-text-xlarge' => __('Text Extra Large', 'echelon-so'), 56 56 'uk-heading-small' => __('Heading Small', 'echelon-so'), 57 'uk-heading-medium' => __('Heading Medium', 'echelon-so'), 57 58 'uk-heading-large' => __('Heading Large', 'echelon-so'), 58 59 'uk-heading-xlarge' => __('Heading Extra Large', 'echelon-so'), -
echelon-so/trunk/readme.txt
r2148038 r2166476 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.txt 9 9 10 Widgets, Features, Advanced Custom Fields, Custom Post Types and WooCommerce for SiteOrigin Page Builder.10 Echelon SiteOrigin Widgets transforms Page Builder into a premium page building powerhouse that anyone can use. 11 11 12 12 == Description == 13 14 IMPORTANT: v2 is a breaking update, please test before upgrading from v1. If you do update and something important breaks, deactivate Echelon and use the v1 download from the link below. Prime is available for v2 only. 15 16 [v1 Download](https://echelonso.com/echelon-so-legacy.zip) 17 18 Echelon SiteOrigin Widgets and Features enhance the functionality of the SiteOrigin Page Builder panels and adds a unique set of premium quality widgets. Echelon SiteOrigin widgets are designed in a neutral plain style with styling available in the customizer. Along with the widgets and features Echelon enables drag and drop for Advanced Custom Fields, Custom Post Types, WooCommerce and Custom Loops. 13 Echelon SiteOrigin Widgets and Features enhance the functionality of the SiteOrigin Page Builder panels and adds a unique set of premium quality widgets that make building pro level pages fast and easy. Echelon SiteOrigin widgets are designed in a neutral plain style with dedicated widgets for Advanced Custom Fields, Custom Post Types, WooCommerce and Custom Loops. As Echelon is a framework our widgets provide the unique abilty to be combined together, creating a wide range of pages and sections which would not be possible with other plugins. 19 14 20 15 [Echelon Home](https://echelonso.com) … … 42 37 43 38 ### Helper CSS 44 Add CSS helper classes to widgets, rows and cells. Helpful classes include desktop and mobile visibility, box shadows, box rounding and clipping.39 Add CSS helper classes to widgets, rows and cells. Helpful classes include desktop and mobile visibility, box shadows, box rounding, clipping and positioning. 45 40 46 41 ### Highlight (Prime) … … 52 47 ### Linked Widgets 53 48 When enabled the widget will be wrapped in a link tag to your given URL, Post ID, SiteOrigin Syntax or the permalink for the current global post. Simple and quick way to link entire widgets without worrying about buttons or text links. 49 50 ### Parallax (Prime) 51 Animate the CSS properties of widgets relative to their position in the viewport. Translate X and Y positions, background positions, rotation, scale, opacity, blur and greyscale. 54 52 55 53 ### Sticky … … 108 106 109 107 ### 404 110 For a cherry on top we have enabled Echelon Layouts for 404 pages aswell. As they are not in the loop you will need to use Custom Loop widgets to handle dynamic data if such data needed. 111 112 ### Library 113 Echelon has an ever expanding library of pre-built blocks you can import to get started building straightaway. We add new content to the Library every week. 108 For a cherry on top we have enabled Echelon Layouts for 404 pages as well. As they are not in the loop you will need to use Custom Loop widgets to handle dynamic data if such data is needed. 114 109 115 110 ### Prime 116 Echelon Prime is our paid version and upgrades many of the widgets and features and adds Prime specific functionality. Echelon is an unlimited product so we have two plans available one for single users and one forteams.111 Echelon Prime is our paid version and upgrades many of the widgets and features and adds Prime specific functionality. Echelon is an unlimited product so we have two plans available one for single developers and one for development teams. 117 112 118 113 == Changelog == 114 115 = 2.0.3 = 116 * Fixed: Comment widget missing Inverse modifier. 117 * Changed: Widget form data sections now correctly labeled as Data. 118 * Changed: Widget icons now use the Echelon square logo. 119 * Added: Lightbox Component widget support within the Slider widget. 120 * Added: Hover animation toggles to Rows (prime). 119 121 120 122 = 2.0.2 = … … 130 132 * Added: LESS control for Gutters (padding, grid). 131 133 * Added: LESS control for Height. 132 * Fixed: LESS Typograhy rounding decimals.134 * Fixed: LESS Typograhy decimal rounding. 133 135 * Changed: Visibilty Helper CSS now has own style group (Visibility). 134 136 * Added: LESS control for max Lightbox width and height. 135 137 * Fixed: Lightbox nav color being overriden by themes anchor styling. 136 138 * Fixed: Cached CSS files not being cleared on LESS compile. 137 * Added: Widget group in the Add New Widget modal. 138 * Changed: Widget icon to be more Echelon. 139 * Added: Various widget descriptions. 140 * Added: Responsive options to Cell Flex features (style regen required) 141 * Fixed: Deadspot in tablet visibility. 139 * Fixed: Deadspot in Visibility. 142 140 143 141 = 2.0.1 = -
echelon-so/trunk/widgets/eso-before-after/eso-before-after.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('Compare the visual difference between two images.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 57 56 $return['before_after'] = array( 58 57 'type' => 'section', 59 'label' => __( ' Before & After' , 'echelon-so' ),58 'label' => __( 'Data' , 'echelon-so' ), 60 59 'hide' => true, 61 60 'fields' => array( -
echelon-so/trunk/widgets/eso-button/eso-button.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('Globally styled square, round and pill buttons.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 78 77 $return['button'] = array( 79 78 'type' => 'section', 80 'label' => __( ' Button' , 'echelon-so' ),79 'label' => __( 'Data' , 'echelon-so' ), 81 80 'hide' => true, 82 81 'fields' => array( … … 109 108 'target_type' => array( 110 109 'type' => 'select', 111 'label' => __('Target ', 'echelon-so'),110 'label' => __('Target Type', 'echelon-so'), 112 111 'default' => 'direct', 113 112 'options' => array( … … 163 162 'type' => 'select', 164 163 'default' => '0', 165 'label' => __(' Weight', 'echelon-so'),164 'label' => __('Font Weight', 'echelon-so'), 166 165 'options' => $echelon_so_modifiers->font_weight(), 167 166 ), … … 175 174 'type' => 'select', 176 175 'default' => '0', 177 'label' => __(' Radius', 'echelon-so'),176 'label' => __('Border Radius', 'echelon-so'), 178 177 'options' => $echelon_so_modifiers->border_radius() 179 178 ), -
echelon-so/trunk/widgets/eso-card/eso-card.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Text and image based content cards.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 106 105 $return['card'] = array( 107 106 'type' => 'section', 108 'label' => __( ' Card' , 'echelon-so' ),107 'label' => __( 'Data' , 'echelon-so' ), 109 108 'hide' => true, 110 109 'fields' => array( -
echelon-so/trunk/widgets/eso-comment/eso-comment.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Comments with images, text and person info.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 60 59 (empty($instance['modifiers']['body_weight'])) ?: $return['body_class'][] = $instance['modifiers']['body_weight']; 61 60 61 $return['wrap_class'] = array(); 62 (empty($instance['modifiers']['inverse'])) ?: $return['wrap_class'][] = $instance['modifiers']['inverse']; 63 62 64 // icon 63 65 $return['icon'] = $instance['comment']['rating_icon']; … … 77 79 $return['comment'] = array( 78 80 'type' => 'section', 79 'label' => __( ' Comment' , 'echelon-so' ),81 'label' => __( 'Data' , 'echelon-so' ), 80 82 'hide' => true, 81 83 'fields' => array( 82 84 'template' => array( 83 'type' => 'select',84 'default' => 'default',85 'label' => __('Template', 'echelon-so'),86 'options' => array(87 'default' => __('Default', 'echelon-so'),88 'wide' => __('Wide', 'echelon-so'),89 ),90 'state_emitter' => array(91 'callback' => 'select',92 'args' => array( 'template' )93 )94 ),85 'type' => 'select', 86 'default' => 'default', 87 'label' => __('Template', 'echelon-so'), 88 'options' => array( 89 'default' => __('Default', 'echelon-so'), 90 'wide' => __('Wide', 'echelon-so'), 91 ), 92 'state_emitter' => array( 93 'callback' => 'select', 94 'args' => array( 'template' ) 95 ) 96 ), 95 97 'image' => array( 96 98 'type' => 'media', … … 167 169 'label' => __('Body Weight', 'echelon-so'), 168 170 'options' => $echelon_so_modifiers->font_weight() 169 ) 171 ), 172 'inverse' => array( 173 'type' => 'select', 174 'default' => '0', 175 'label' => __('Inverse', 'echelon-so'), 176 'options' => $echelon_so_modifiers->inverse() 177 ) 170 178 ) 171 179 ); -
echelon-so/trunk/widgets/eso-comment/tpl/default.php
r2140169 r2166476 1 <div class="uk-comment ">1 <div class="uk-comment <?php echo esc_attr(implode(' ', $wrap_class)); ?>"> 2 2 <div class="uk-comment-header uk-margin-remove-bottom uk-grid-medium uk-flex-middle" uk-grid> 3 3 -
echelon-so/trunk/widgets/eso-comment/tpl/wide.php
r2140169 r2166476 1 <div class="uk-comment ">1 <div class="uk-comment <?php echo esc_attr(implode(' ', $wrap_class)); ?>"> 2 2 <div class="uk-comment-header uk-margin-remove-bottom uk-grid-medium uk-flex-middle" uk-grid> 3 3 -
echelon-so/trunk/widgets/eso-count-query-result/eso-count-query-result.php
r2148033 r2166476 2 2 /* 3 3 Widget Name: E: Count Query Result 4 Description: Display the count from a customquery.4 Description: Display the count from a posts query. 5 5 Author: Echelon 6 6 Author URI: https://echelonso.com … … 15 15 __('E: Count Query Result', 'echelon-so' ), 16 16 array( 17 'description' => __('Display the count from a custom query.', 'echelon-so' ), 18 'panels_groups' => array('echelon') 17 'description' => __('Display the count from a posts query.', 'echelon-so' ), 19 18 ), 20 19 array(), … … 62 61 $return['count_query_result'] = array( 63 62 'type' => 'section', 64 'label' => __( ' Count Query Result' , 'echelon-so' ),63 'label' => __( 'Data' , 'echelon-so' ), 65 64 'hide' => true, 66 65 'fields' => array( … … 72 71 'query' => array( 73 72 'type' => 'posts', 74 'label' => __(' Some PostsQuery', 'echelon-so' ),73 'label' => __('Query', 'echelon-so' ), 75 74 ) 76 75 ) … … 85 84 'type' => 'select', 86 85 'default' => '0', 87 'label' => __(' Size', 'echelon-so'),86 'label' => __('Font Size', 'echelon-so'), 88 87 'options' => $echelon_so_modifiers->font_size() 89 88 ), … … 91 90 'type' => 'select', 92 91 'default' => '0', 93 'label' => __('Weight', 'echelon-so'), 94 'description' => __('Google fonts ignore this modifier.', 'echelon-so'), 92 'label' => __('Font Weight', 'echelon-so'), 95 93 'options' => $echelon_so_modifiers->font_weight() 96 94 ), … … 98 96 'type' => 'select', 99 97 'default' => '0', 100 'label' => __(' Alignment', 'echelon-so'),98 'label' => __('Text Align', 'echelon-so'), 101 99 'options' => $echelon_so_modifiers->text_align() 102 100 ), -
echelon-so/trunk/widgets/eso-counter/eso-counter.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Animate the count between two numbers.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 52 51 $return['wrapper_class'] = array(); 53 52 (empty($instance['modifiers']['align'])) ?: $return['class'][] = $instance['modifiers']['align']; 53 (empty($instance['modifiers']['inverse'])) ?: $return['wrapper_class'][] = $instance['modifiers']['inverse']; 54 54 55 55 return $return; … … 66 66 $return['counter'] = array( 67 67 'type' => 'section', 68 'label' => __( ' Counter' , 'echelon-so' ),68 'label' => __( 'Data' , 'echelon-so' ), 69 69 'hide' => true, 70 70 'fields' => array( … … 115 115 'type' => 'select', 116 116 'default' => '0', 117 'label' => __(' Size', 'echelon-so'),117 'label' => __('Font Size', 'echelon-so'), 118 118 'options' => $echelon_so_modifiers->font_size(), 119 119 ), … … 121 121 'type' => 'select', 122 122 'default' => '0', 123 'label' => __('Weight', 'echelon-so'), 124 'description' => __('Google fonts ignore this modifier.', 'echelon-so'), 123 'label' => __('Font Weight', 'echelon-so'), 125 124 'options' => $echelon_so_modifiers->font_weight() 126 125 ), … … 128 127 'type' => 'select', 129 128 'default' => '0', 130 'label' => __(' Align', 'echelon-so'),129 'label' => __('Text Align', 'echelon-so'), 131 130 'options' => $echelon_so_modifiers->text_align() 131 ), 132 'inverse' => array( 133 'type' => 'select', 134 'default' => '0', 135 'label' => __('Inverse', 'echelon-so'), 136 'options' => $echelon_so_modifiers->inverse() 132 137 ) 133 138 ) -
echelon-so/trunk/widgets/eso-counter/tpl/default.php
r2140165 r2166476 1 <div id="<?php echo $int_id; ?>_spy" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo esc_attr($offset); ?>; " class="<?php echo esc_attr(implode(' ', $wrapper_class)); ?>">1 <div id="<?php echo $int_id; ?>_spy" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo esc_attr($offset); ?>; delay: 10;" class="<?php echo esc_attr(implode(' ', $wrapper_class)); ?>"> 2 2 <div id="<?php echo $int_id; ?>" class="eso-counter <?php echo esc_attr(implode(' ', $class)); ?>"> 3 3 <?php echo esc_html($startVal); ?> … … 7 7 <script type="text/javascript"> 8 8 (function($) { 9 10 $(document).ready(function() { 11 12 $(document).on('inview', '#<?php echo $int_id; ?>_spy', function() { 13 14 var options = { 15 useEasing: <?php echo $easing; ?>, 16 decimal: '<?php echo esc_attr($decimal); ?>', 17 useGrouping: <?php echo esc_attr($grouping); ?>, 18 separator: '<?php echo esc_attr($separator); ?>' 19 }; 20 21 var <?php echo $int_id; ?> = new CountUp('<?php echo $int_id; ?>', <?php echo esc_attr($startVal); ?>, <?php echo esc_attr($endVal); ?>, <?php echo esc_attr($decimal_places); ?>, <?php echo esc_attr($duration); ?>, options).start(); 22 23 }); 24 25 }) 26 9 10 $(document).on('inview', '#<?php echo $int_id; ?>_spy', function() { 11 12 var options = { 13 useEasing: <?php echo $easing; ?>, 14 decimal: '<?php echo esc_attr($decimal); ?>', 15 useGrouping: <?php echo esc_attr($grouping); ?>, 16 separator: '<?php echo esc_attr($separator); ?>' 17 }; 18 19 var <?php echo $int_id; ?> = new CountUp('<?php echo $int_id; ?>', <?php echo esc_attr($startVal); ?>, <?php echo esc_attr($endVal); ?>, <?php echo esc_attr($decimal_places); ?>, <?php echo esc_attr($duration); ?>, options).start(); 20 21 }); 22 27 23 })(jQuery) 28 24 </script> -
echelon-so/trunk/widgets/eso-custom-loop/eso-custom-loop.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Run a loop for an Echelon layout based on a posts query.', 'echeon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 44 43 $return['custom_loop'] = array( 45 44 'type' => 'section', 46 'label' => __( ' Custom Loop' , 'echelon-so' ),45 'label' => __( 'Data' , 'echelon-so' ), 47 46 'hide' => true, 48 47 'fields' => array( -
echelon-so/trunk/widgets/eso-description-list/eso-description-list.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('A simple alternative to item lists.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 32 31 $return['class'] = array(); 33 32 (empty($instance['modifiers']['divider'])) ?: $return['class'][] = $instance['modifiers']['divider']; 33 34 34 return $return; 35 35 } … … 43 43 $return['description_list'] = array( 44 44 'type' => 'section', 45 'label' => __( 'D escription List' , 'echelon-so' ),45 'label' => __( 'Data' , 'echelon-so' ), 46 46 'hide' => true, 47 47 'fields' => array( 48 48 'list_items' => array( 49 49 'type' => 'repeater', 50 'label' => __( 'List Items' , ' widget-form-fields-text-domain' ),51 'item_name' => __( 'Item', ' siteorigin-widgets' ),50 'label' => __( 'List Items' , 'echelon-so' ), 51 'item_name' => __( 'Item', 'echelon-so' ), 52 52 'fields' => array( 53 53 'heading' => array( 54 54 'type' => 'text', 55 'label' => __( 'Heading', ' widget-form-fields-text-domain' )55 'label' => __( 'Heading', 'echelon-so' ) 56 56 ), 57 57 'text' => array( 58 58 'type' => 'textarea', 59 'label' => __( 'Text', ' widget-form-fields-text-domain' )59 'label' => __( 'Text', 'echelon-so' ) 60 60 ) 61 61 ) -
echelon-so/trunk/widgets/eso-divider/eso-divider.php
r2148033 r2166476 17 17 array( 18 18 'description' => __('Horizontal and veritcal dividers.', 'echelon-so' ), 19 'panels_groups' => array('echelon')20 19 ), 21 20 array(), … … 54 53 $return['divider'] = array( 55 54 'type' => 'section', 56 'label' => __( 'D ivider' , 'echelon-so' ),55 'label' => __( 'Data' , 'echelon-so' ), 57 56 'hide' => true, 58 57 'fields' => array( … … 62 61 'label' => __('Template', 'echelon-so'), 63 62 'options' => array( 64 'default' => __(' Default', 'echelon-so'),63 'default' => __('Large', 'echelon-so'), 65 64 'small' => __('Small', 'echelon-so'), 66 65 'vertical' => __('Vertical', 'echelon-so'), … … 73 72 'icon' => array( 74 73 'type' => 'icon', 75 'label' => __( ' RatingIcon', 'echelon-so' ),74 'label' => __( 'Icon', 'echelon-so' ), 76 75 'state_handler' => array( 77 76 'template[icon]' => array( 'show' ), … … 82 81 'type' => 'color', 83 82 'default' => '#252525', 84 'label' => __( ' RatingColor', 'echelon-so' ),83 'label' => __( 'Icon Color', 'echelon-so' ), 85 84 'state_handler' => array( 86 85 'template[icon]' => array( 'show' ), -
echelon-so/trunk/widgets/eso-feature/eso-feature.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Icon based small and large feature boxes.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 89 88 $return['feature'] = array( 90 89 'type' => 'section', 91 'label' => __( ' Feature' , 'echelon-so' ),90 'label' => __( 'Data' , 'echelon-so' ), 92 91 'hide' => true, 93 92 'fields' => array( -
echelon-so/trunk/widgets/eso-filter/eso-filter.php
r2148033 r2166476 17 17 array( 18 18 'description' => __('Masonry and grid content filters.', 'echelon-so' ), 19 'panels_groups' => array('echelon')20 19 ), 21 20 array(), -
echelon-so/trunk/widgets/eso-heading/eso-heading.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('Various section heading styles.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 49 48 $return['heading'] = array( 50 49 'type' => 'section', 51 'label' => __( ' Heading' , 'echelon-so' ),50 'label' => __( 'Data' , 'echelon-so' ), 52 51 'hide' => true, 53 52 'fields' => array( -
echelon-so/trunk/widgets/eso-icon-list/eso-icon-list.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Icon List 5 Description: A list of icons with text.5 Description: An icon based text list. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 16 16 __('E: Icon List', 'echelon-so'), 17 17 array( 18 'description' => __('Add an icon based text list.', 'echelon-so'), 19 'panels_groups' => array('echelon') 18 'description' => __('An icon based text list.', 'echelon-so'), 20 19 ), 21 20 array(), … … 61 60 $return['icon_list'] = array( 62 61 'type' => 'section', 63 'label' => __( ' List Items' , 'echelonso-text-domain' ),62 'label' => __( 'Data' , 'echelonso-text-domain' ), 64 63 'hide' => true, 65 64 'fields' => array( -
echelon-so/trunk/widgets/eso-lightbox-component-image/eso-lightbox-component-image.php
r2148033 r2166476 2 2 /* 3 3 Widget Name: E: Lightbox Component - Image 4 Description: Use inside the Lightbox Gallery, Lightbox Filter and Lightbox Sliderwidgets.4 Description: Images designed for Lighbox supported widgets. 5 5 Author: Echelon 6 6 Author URI: https://echelonso.com … … 14 14 __('E: Lightbox Component - Image', 'echelon-so'), 15 15 array( 16 'description' => __('Use inside the Lightbox Gallery, Lightbox Filter and Lightbox Slider widgets.', 'echelon-so' ), 17 'panels_groups' => array('echelon') 16 'description' => __('Images designed for Lighbox supported widgets.', 'echelon-so' ), 18 17 ), 19 18 array(), … … 97 96 $return['lightbox_content'] = array( 98 97 'type' => 'section', 99 'label' => __( ' Lightbox Content' , 'echelon-so' ),98 'label' => __( 'Data' , 'echelon-so' ), 100 99 'hide' => true, 101 100 'fields' => array( -
echelon-so/trunk/widgets/eso-lightbox-gallery/eso-lightbox-gallery.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Lightbox Gallery 5 Description: Grid based Lightbox Galleries (uses ImageComponents).5 Description: Grid based Lightbox Galleries (uses Lightbox Components). 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 15 15 __('E: Lightbox Gallery', 'echelon-so'), 16 16 array( 17 'description' => __('Grid based Lightbox Galleries (uses Image Components).', 'echelon-so' ), 18 'panels_groups' => array('echelon') 17 'description' => __('Grid based Lightbox Galleries (uses Lightbox Components).', 'echelon-so' ), 19 18 ), 20 19 array(), … … 44 43 $return['lightbox_gallery'] = array( 45 44 'type' => 'section', 46 'label' => __( ' Lightbox' , 'echelon-so' ),45 'label' => __( 'Data' , 'echelon-so' ), 47 46 'hide' => true, 48 47 'fields' => array( -
echelon-so/trunk/widgets/eso-modal/eso-modal.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Modal 5 Description: Overlay content on the page with Modals.5 Description: Overlay content on the page with Popup Modals. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 16 16 __('E: Modal', 'echelon-so'), 17 17 array( 18 'description' => __('Overlay content on the page with Modals.', 'echelon-so' ), 19 'panels_groups' => array('echelon') 18 'description' => __('Overlay content on the page with Popup Modals.', 'echelon-so' ), 20 19 ), 21 20 array(), … … 94 93 $return['modal'] = array( 95 94 'type' => 'section', 96 'label' => __( ' Modal' , 'echelon-so' ),95 'label' => __( 'Data' , 'echelon-so' ), 97 96 'hide' => true, 98 97 'fields' => array( -
echelon-so/trunk/widgets/eso-nav/eso-nav.php
r2148033 r2166476 17 17 array( 18 18 'description' => __('A vertical nav for Off Canvas and other uses.', 'echelon-so' ), 19 'panels_groups' => array('echelon')20 19 ), 21 20 array(), -
echelon-so/trunk/widgets/eso-off-canvas/eso-off-canvas.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Off Canvas 5 Description: Off page sections for menus and content.5 Description: Off page content areas. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 16 16 __('E: Off Canvas', 'echelon-so'), 17 17 array( 18 'description' => __('Off page sections for menus and content.', 'echelon-so' ), 19 'panels_groups' => array('echelon') 18 'description' => __('Off page content areas.', 'echelon-so' ), 20 19 ), 21 20 array(), … … 51 50 $return['off_canvas'] = array( 52 51 'type' => 'section', 53 'label' => __( ' Off Canvas' , 'echelon-so' ),52 'label' => __( 'Data' , 'echelon-so' ), 54 53 'hide' => true, 55 54 'fields' => array( -
echelon-so/trunk/widgets/eso-overlay/eso-overlay.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('Overlay two different page builder layouts.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 63 62 64 63 // transition 65 if ( $instance['overlay']['template'] == 'transition') { 66 (empty($instance['modifiers']['transition'])) ?: $return['overlay_class'][] = $instance['modifiers']['transition']; 67 (empty($instance['modifiers']['transition_toggle'])) ?: $return['wrap_class'][] = $instance['modifiers']['transition_toggle']; 68 $return['content_class'] = array(); 69 (empty($instance['modifiers']['content_transition'])) ?: $return['content_class'][] = $instance['modifiers']['content_transition']; 70 } 64 (empty($instance['modifiers']['transition'])) ?: $return['overlay_class'][] = $instance['modifiers']['transition']; 65 (empty($instance['modifiers']['transition_toggle'])) ?: $return['wrap_class'][] = $instance['modifiers']['transition_toggle']; 66 $return['content_class'] = array(); 67 (empty($instance['modifiers']['content_transition'])) ?: $return['content_class'][] = $instance['modifiers']['content_transition']; 68 71 69 return $return; 72 70 } … … 78 76 $return['overlay'] = array( 79 77 'type' => 'section', 80 'label' => __( ' Overlay' , 'echelon-so' ),78 'label' => __( 'Data' , 'echelon-so' ), 81 79 'hide' => true, 82 80 'fields' => array( -
echelon-so/trunk/widgets/eso-pricing/eso-pricing.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Pricing 5 Description: Simple card like pricing boxes.5 Description: Card based pricing box. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 15 15 __('E: Pricing', 'echelon-so'), 16 16 array( 17 'description' => __('Simple card like pricing boxes.', 'echelon-so' ), 18 'panels_groups' => array('echelon') 17 'description' => __('Card based pricing box.', 'echelon-so' ), 19 18 ), 20 19 array(), … … 93 92 $return['pricing'] = array( 94 93 'type' => 'section', 95 'label' => __( ' Pricing' , 'echelon-so' ),94 'label' => __( 'Data' , 'echelon-so' ), 96 95 'hide' => true, 97 96 'fields' => array( -
echelon-so/trunk/widgets/eso-radial/eso-radial.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('A radial progress bar or odometer.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 91 90 $return['radial'] = array( 92 91 'type' => 'section', 93 'label' => __( ' Radial' , 'echelon-so' ),92 'label' => __( 'Data' , 'echelon-so' ), 94 93 'hide' => true, 95 94 'fields' => array( -
echelon-so/trunk/widgets/eso-radial/tpl/default.php
r2140165 r2166476 1 <div id="<?php echo $int_id;?>" class="eso-radial uk-text-center uk-position-relative" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo $trigger_distance; ?>; ">1 <div id="<?php echo $int_id;?>" class="eso-radial uk-text-center uk-position-relative" uk-scrollspy="cls: eso; hidden: false; offset-top: -<?php echo $trigger_distance; ?>; delay: 10;"> 2 2 3 3 <?php if (!empty($title)) : ?> -
echelon-so/trunk/widgets/eso-reuse-layout/eso-reuse-layout.php
r2148033 r2166476 19 19 array( 20 20 'description' => __('Display the content from a reusable layout.', 'echelon-so' ), 21 'panels_groups' => array('echelon')22 21 ), 23 22 false, … … 33 32 $form['option'] = array( 34 33 'type' => 'section', 35 'label' => __( ' Layout' , 'echelon-so' ),34 'label' => __( 'Data' , 'echelon-so' ), 36 35 'hide' => true, 37 36 'fields' => array( -
echelon-so/trunk/widgets/eso-slabtext/eso-slabtext.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Automatically format text into square blocks.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 49 48 $return['slabtext'] = array( 50 49 'type' => 'section', 51 'label' => __( ' Text' , 'echelon-so' ),50 'label' => __( 'Data' , 'echelon-so' ), 52 51 'hide' => true, 53 52 'fields' => array( -
echelon-so/trunk/widgets/eso-slider/eso-slider.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Slider 5 Description: Slider framework to load other widgets into.5 Description: Slider framework for other widgets. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 16 16 __('E: Slider', 'echelon-so'), 17 17 array( 18 'description' => __('Slider framework to load other widgets into.', 'echelon-so' ), 19 'panels_groups' => array('echelon') 18 'description' => __('Slider framework for other widgets.', 'echelon-so' ), 20 19 ), 21 20 array(), … … 71 70 72 71 $return['transition'] = !empty($instance['modifiers']['transition']) ? 'uk-transition-active' : 'eso'; 72 73 // lightbox 74 $return['lightbox'] = ''; 75 (empty($instance['slider']['lightbox'])) ?: $return['lightbox'] = 'uk-lightbox'; 73 76 74 77 return $return; … … 97 100 $return['slider'] = array( 98 101 'type' => 'section', 99 'label' => __( ' Slider' , 'echelon-so' ),102 'label' => __( 'Data' , 'echelon-so' ), 100 103 'hide' => true, 101 104 'fields' => array( … … 112 115 ) 113 116 ), 117 'lightbox' => array( 118 'type' => 'select', 119 'default' => '0', 120 'label' => __('Lightbox', 'echelon-so'), 121 'description' => __('Setting this will allow the Slider to work with Lightbox Component widgets.', 'echelon-so'), 122 'options' => array( 123 '0' => __('-', 'echelon-so'), 124 'slide' => __('Slide', 'echelon-so'), 125 ) 126 ) 114 127 ) 115 128 ); -
echelon-so/trunk/widgets/eso-slider/tpl/default.php
r2148033 r2166476 5 5 <div class="uk-position-relative <?php echo esc_attr(implode(' ', $nav_wrap_class)); ?>"> 6 6 7 <div class="uk-slider-container">7 <div <?php echo $lightbox; ?> class="uk-slider-container"> 8 8 9 9 <div class="uk-slider-items uk-grid <?php echo esc_attr(implode(' ', $items_class)); ?>"> -
echelon-so/trunk/widgets/eso-smooth-scroll/eso-smooth-scroll.php
r2148033 r2166476 17 17 array( 18 18 'description' => __('Smooth scroll page links to their targets.', 'echelon-so' ), 19 'panels_groups' => array('echelon')20 19 ), 21 20 false, … … 23 22 'scroll' => array( 24 23 'type' => 'section', 25 'label' => __( ' Smooth Scroll' , 'echelon-so' ),24 'label' => __( 'Data' , 'echelon-so' ), 26 25 'hide' => true, 27 26 'fields' => array( -
echelon-so/trunk/widgets/eso-tabs/eso-tabs.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Tabs 5 Description: Description coming soon.5 Description: Animated content switching tabs. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 17 17 array( 18 18 'description' => __('Animated content switching tabs.', 'echelon-so' ), 19 'panels_groups' => array('echelon')20 19 ), 21 20 array(), … … 60 59 $return['tabs'] = array( 61 60 'type' => 'section', 62 'label' => __( ' Tabs' , 'echelon-so' ),61 'label' => __( 'Data' , 'echelon-so' ), 63 62 'hide' => true, 64 63 'fields' => array( -
echelon-so/trunk/widgets/eso-tabs/tpl/default.php
r2140169 r2166476 2 2 3 3 <?php foreach ($tabs_repeater as $k => $v) : ?> 4 <li >4 <li class="uk-padding-remove"> 5 5 <a href="#" class="<?php echo esc_attr(implode(' ', $link_class)); ?>"> 6 6 -
echelon-so/trunk/widgets/eso-template-tag/eso-template-tag.php
r2148033 r2166476 16 16 array( 17 17 'description' => __('Use a template tag inside a looped Echelon layout.', 'echelon-so' ), 18 'panels_groups' => array('echelon')19 18 ), 20 19 array(), … … 36 35 $return['tag_class'] = array(); 37 36 (empty($instance['modifiers']['size'])) ?: $return['tag_class'][] = $instance['modifiers']['size']; 38 (empty($instance['modifiers']['weight']) && $instance['text']['font'] != 'default') ?: $return['tag_class'][] = $instance['modifiers']['weight'];37 (empty($instance['modifiers']['weight'])) ?: $return['tag_class'][] = $instance['modifiers']['weight']; 39 38 (empty($instance['modifiers']['transform'])) ?: $return['tag_class'][] = $instance['modifiers']['transform']; 40 39 (empty($instance['modifiers']['alignment'])) ?: $return['tag_class'][] = $instance['modifiers']['alignment']; … … 54 53 $return['template_tag'] = array( 55 54 'type' => 'select', 56 'label' => __( ' Template Tag', 'echelon-so' ),55 'label' => __( 'Data', 'echelon-so' ), 57 56 'default' => '0', 58 57 'options' => array( -
echelon-so/trunk/widgets/eso-text-rotator/eso-text-rotator.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Automaitcally rotate text with animations.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 60 59 $return['text_rotator'] = array( 61 60 'type' => 'section', 62 'label' => __( ' Text' , 'echelon-so' ),61 'label' => __( 'Data' , 'echelon-so' ), 63 62 'hide' => true, 64 63 'fields' => array( … … 109 108 'fade' => __('Fade', 'echelon-so'), 110 109 'dissolve' => __('Dissolve', 'echelon-so'), 111 'flip' => __('Flip', 'echelon-so'),112 'flipUp' => __('Flip Up', 'echelon-so'),113 'flipCube' => __('Flip Cube', 'echelon-so'),114 'flipCubeUp' => __('Flip Cube Up', 'echelon-so'),115 'spin' => __('Spin', 'echelon-so'),116 110 ) 117 111 ), -
echelon-so/trunk/widgets/eso-text/eso-text.php
r2148033 r2166476 15 15 array( 16 16 'description' => __('Display text blocks in various sizes.', 'echelon-so' ), 17 'panels_groups' => array('echelon')18 17 ), 19 18 array(), … … 51 50 $return['text'] = array( 52 51 'type' => 'section', 53 'label' => __( ' Text' , 'echelon-so' ),52 'label' => __( 'Data' , 'echelon-so' ), 54 53 'hide' => true, 55 54 'fields' => array( -
echelon-so/trunk/widgets/eso-twitter-feed/eso-twitter-feed.php
r2148033 r2166476 2 2 /* 3 3 Widget Name: E: Twitter Feed 4 Description: Display your mostrecent tweets.4 Description: Display your recent tweets. 5 5 Author: Echelon 6 6 Author URI: https://echelonso.com … … 14 14 __('E: Twitter Feed', 'echelon-so'), 15 15 array( 16 'description' => __('Display your most recent tweets.', 'echelon-so' ), 17 'panels_groups' => array('echelon') 16 'description' => __('Display your recent tweets.', 'echelon-so' ), 18 17 ), 19 18 array(), … … 61 60 $return['twitter_feed'] = array( 62 61 'type' => 'section', 63 'label' => __( ' Twitter Feed' , 'echelon-so' ),62 'label' => __( 'Data' , 'echelon-so' ), 64 63 'hide' => true, 65 64 'fields' => array( -
echelon-so/trunk/widgets/eso-video/eso-video.php
r2148033 r2166476 3 3 /* 4 4 Widget Name: E: Video 5 Description: Description coming soon.5 Description: Autoplay and cover based videos, with and without controls. 6 6 Author: Echelon 7 7 Author URI: https://echelonso.com … … 16 16 __('E: Video', 'echelon-so'), 17 17 array( 18 'description' => __('Description coming soon.', 'echelon-so' ), 19 'panels_groups' => array('echelon') 18 'description' => __('Autoplay and cover based videos, with and without controls.', 'echelon-so' ), 20 19 ), 21 20 array(), … … 88 87 $return['video'] = array( 89 88 'type' => 'section', 90 'label' => __( ' Video' , 'echelon-so' ),89 'label' => __( 'Data' , 'echelon-so' ), 91 90 'hide' => true, 92 91 'fields' => array(
Note: See TracChangeset
for help on using the changeset viewer.