golden hour
/home/godaofbq/hyperbarichelp.com/wp-content/plugins/oxygen/component-framework/components/classes
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
comment-form.class.php
7.6 KB
Del
OK
comments-list-templates
-
Del
OK
comments-list.class.php
14.76 KB
Del
OK
data.comment-form.class.php
4.38 KB
Del
OK
div-block.class.php
4.34 KB
Del
OK
dynamic-list.class.php
314.25 KB
Del
OK
easy-posts-templates
-
Del
OK
fancy-icon.class.php
7.65 KB
Del
OK
gallery
-
Del
OK
gallery.class.php
44.75 KB
Del
OK
header-row-center.class.php
1.61 KB
Del
OK
header-row-left.class.php
1.59 KB
Del
OK
header-row-right.class.php
1.6 KB
Del
OK
header-row.class.php
7.22 KB
Del
OK
header.class.php
12.43 KB
Del
OK
headline.class.php
3.35 KB
Del
OK
icon-box.class.php
29.44 KB
Del
OK
inner-content.class.php
5.65 KB
Del
OK
li.class.php
3.08 KB
Del
OK
link-button.class.php
5.73 KB
Del
OK
link-text.class.php
5.25 KB
Del
OK
link-wrapper.class.php
4.74 KB
Del
OK
login-form.class.php
6.88 KB
Del
OK
map.class.php
2.36 KB
Del
OK
menu-pro
-
Del
OK
menu-pro.class.php
72.9 KB
Del
OK
menu.class.php
32.7 KB
Del
OK
modal.class.php
40.33 KB
Del
OK
nestable-shortcode.class.php
3.85 KB
Del
OK
new-columns.class.php
7.94 KB
Del
OK
pricing-box.class.php
80.82 KB
Del
OK
progress-bar.class.php
21.21 KB
Del
OK
reusable.class.php
2.24 KB
Del
OK
rich-text.class.php
4.67 KB
Del
OK
search-form.class.php
6.92 KB
Del
OK
section.class.php
5.68 KB
Del
OK
selector.class.php
3.3 KB
Del
OK
shape-divider
-
Del
OK
shape-divider.class.php
101.89 KB
Del
OK
shortcode.class.php
5.7 KB
Del
OK
sidebar.class.php
2.1 KB
Del
OK
slide.class.php
3.34 KB
Del
OK
slider.class.php
22.83 KB
Del
OK
social-icons.class.php
23.93 KB
Del
OK
soundcloud.class.php
3.92 KB
Del
OK
span.class.php
4.5 KB
Del
OK
superbox.class.php
26.58 KB
Del
OK
svg-icon.class.php
6.78 KB
Del
OK
tab-content.class.php
2.78 KB
Del
OK
tab.class.php
2.79 KB
Del
OK
tabs-contents.class.php
2.8 KB
Del
OK
tabs.class.php
7.16 KB
Del
OK
testimonial.class.php
32.71 KB
Del
OK
text-block.class.php
3.64 KB
Del
OK
toggle.class.php
9.31 KB
Del
OK
toolset-view.class.php
4.67 KB
Del
OK
video.class.php
4.52 KB
Del
OK
widget.class.php
6.67 KB
Del
OK
Edit: selector.class.php
<?php Class CT_Selector extends CT_Component { function __construct( $options ) { // run initialization $this->init( $options ); // remove component button remove_action("ct_toolbar_fundamentals_list", array( $this, "component_button" ) ); add_action("ct_toolbar_component_header", array( $this, "selector_settings" ), 9 ); } /** * Selector options * * @since 1.5 * @author Ilya K. */ function selector_settings() { ?> <div ng-if="iframeScope.selectedNodeType==='selector'"> <div class="oxygen-control-row" ng-if="iframeScope.isEditing('pseudo-element')"> <div class='oxygen-control-wrapper'> <div class='oxygen-control'> <div class='oxygen-input'> <input type="text" spellcheck="false" placeholder="<?php _e("content...", "component-theme"); ?>" ng-model="iframeScope.component.options[iframeScope.component.active.id]['model']['content']" ng-change="iframeScope.setOption(iframeScope.component.active.id,iframeScope.component.active.name,'content')"/> </div> </div> </div> </div> <!-- .oxygen-control-row --> <div class="oxygen-control-row"> <div class='oxygen-control-wrapper'> <label class='oxygen-control-label'><?php _e( "Friendly Name", "component-theme" ); ?></label> <div class='oxygen-control'> <div class='oxygen-input'> <input type="text" spellcheck="false" ng-model="iframeScope.customSelectors[iframeScope.selectorToEdit]['friendly_name']" ng-change="iframeScope.checkNewCustomSelector(iframeScope.selectorToEdit)"/> </div> </div> </div> </div> <!-- .oxygen-control-row --> <div class="oxygen-control-row"> <div class="oxygen-control-wrapper"> <label class='oxygen-control-label'><?php _e( "Style Set", "oxygen" ); ?></label> <div class="oxygen-select oxygen-select-box-wrapper oxygen-style-set-dropdown"> <div class="oxygen-select-box"> <div class="oxygen-select-box-current">{{iframeScope.customSelectors[iframeScope.selectorToEdit]['set_name']}}</div> <div class="oxygen-select-box-dropdown"></div> </div> <div class="oxygen-select-box-options"> <div class="oxygen-select-box-option"> <input type="text" class="ct-new-component-class-input" placeholder="<?php _e("Enter style set name...","oxygen");?>" ng-model="$parent.newStyleSetName" ng-keypress="$parent.processStyleSetNameInput($event)"> <span class="oxygen-add-style-set" ng-click="$parent.addNewStyleSet()"> <?php _e("add set...", "oxygen"); ?> </span> </div> <div class="oxygen-select-box-option" title="<?php _e("Use this style set", "oxygen"); ?>" ng-repeat="(key,set) in iframeScope.styleSets" ng-click="$parent.setSelectorStyleSet(key);"> {{key}} <img src='<?php echo CT_FW_URI; ?>/toolbar/UI/oxygen-icons/remove_icon.svg' title="<?php _e("Remove style set from Oxygen", "oxygen"); ?>" ng-click="$parent.deleteStyleSet(key)"/> </div> </div> </div> </div> </div> <!-- .oxygen-control-row --> </div> <?php } } // Create inctance global $oxygen_vsb_components; $oxygen_vsb_components['selector'] = new CT_Selector( array( 'name' => 'Selector', 'tag' => 'ct_selector' ) );
Save