Submit
Path:
~
/
home
/
getwphos
/
public_html
/
wastefull
/
wp-content
/
plugins
/
elementor-theme-core
/
inc
/
helpers
/
File Content:
common.php
<?php if(!function_exists('etc_print_html')){ function etc_print_html($content){ echo $content; } } if(!function_exists('etc_print_shortcode')) { function etc_print_shortcode($content) { echo do_shortcode($content); } } if(!function_exists('etc_register_shortcode')) { function etc_register_shortcode($tag, $callback) { add_shortcode($tag, $callback); } } if(!function_exists('etc_register_wp_widget')) { function etc_register_wp_widget($class) { register_widget($class); } } if(!function_exists('replace_all_special_character')){ function replace_all_special_character($subject = '', $replace = '_'){ return preg_replace('/[^A-Za-z0-9]/', $replace, $subject); } } if(!function_exists('etc_get_template') && !function_exists('etc_get_locate_template')){ function etc_get_template($widget, $template_path = '', $default_path = ''){ $settings = $widget->get_settings_for_display(); $settings['element_id'] = $widget->get_id(); $settings['element_name'] = $widget->get_name(); $template_name = $widget->get_name(); $layout = (isset($settings['layout']) && !empty($settings['layout']))?$settings['layout']:'1'; $located = etc_get_locate_template($template_name, $layout, $template_path, $default_path); if (!file_exists($located)) { _doing_it_wrong(__FUNCTION__, sprintf('<code>%s</code> does not exist.', $located), '1.0'); return false; } $located = apply_filters('etc_template_part', $located, $template_name, $settings, $template_path, $default_path); include($located); } function etc_get_locate_template($template_name, $layout = '1', $template_path = '', $default_path = '') { $layout_name = 'layout' . $layout . '.php'; if (!$template_path) { $template_path = apply_filters('etc_template_path', 'elementor/templates/widgets/' . $template_name . '/'); } if (!$default_path) { $default_path = ETC_PATH . 'templates/widgets/' . $template_name . '/'; } // Look within passed path within the theme - this is priority. $template = locate_template( array( trailingslashit($template_path) . $layout_name, $layout_name ) ); // Get default template/ if (!$template) { $template = $default_path . $layout_name; } // Return what we found. return apply_filters('etc_locate_template', $template, $template_name, $template_path); } } if(!function_exists('etc_get_post_types')){ function etc_get_post_types(){ } } if(!function_exists('etc_get_post_type_options')){ function etc_get_post_type_options(){ $post_types = get_post_types([ 'public' => true, //'_builtin' => false ], 'objects'); $DefaultExcludedPostTypes = [ 'page', 'attachment', 'revision', 'nav_menu_item', 'vc_grid_item', 'custom_css', 'customize_changeset', 'oembed_cache', 'cms-mega-menu', 'elementor_library', ]; $ExtraExcludedPostTypes = apply_filters('etc_get_post_types', []); $excludedPostTypes = array_merge($DefaultExcludedPostTypes, $ExtraExcludedPostTypes ); $result = []; if (!is_array($post_types)) return $result; foreach ($post_types as $post_type) { if (!$post_type instanceof WP_Post_Type) continue; if (in_array($post_type->name, $excludedPostTypes)) continue; $result[$post_type->name] = $post_type->labels->singular_name;; } return $result; } } if(!function_exists('etc_get_post_categories')){ function etc_get_post_categories(){ return get_terms('category', array( 'hide_empty' => false, 'order' => 'desc', )); } if(!function_exists('etc_get_post_categories_options')){ function etc_get_post_categories_options(){ $categories = etc_get_post_categories(); $options = array(); if(!is_wp_error($categories)){ foreach ($categories as $cat){ $options[$cat->slug . "|" . "category"] = $cat->name; } } return $options; } } } if(!function_exists('etc_get_element_id')){ function etc_get_element_id($settings){ return $settings['element_name'] . '-' . $settings['element_id']; } } if(!function_exists('etc_get_grid_term_list')){ function etc_get_grid_term_list($post_type, $taxonomy = array()) { if (empty($taxonomy)) { $taxonomy = get_object_taxonomies($post_type, 'names'); } $term_list = array(); $term_list['terms'] = array(); $term_list['auto_complete'] = array(); foreach ($taxonomy as $tax) { $terms = get_terms( array( 'taxonomy' => $tax, 'hide_empty' => true, ) ); foreach ($terms as $term) { $term_list['terms'][] = $term->slug . '|' . $tax; $term_list['auto_complete'][] = array( 'value' => $term->slug . '|' . $tax, 'label' => $term->name, ); } } return $term_list; } } if(!function_exists('etc_get_grid_term_options')){ function etc_get_grid_term_options($post_type, $taxonomy = array()) { if (empty($taxonomy)) { $taxonomy = get_object_taxonomies($post_type, 'names'); } $term_list = array(); foreach ($taxonomy as $tax) { $terms = get_terms( array( 'taxonomy' => $tax, 'hide_empty' => true, ) ); foreach ($terms as $term) { $parents = get_term_by('id', $term->parent, $term->taxonomy); $parents_name = ''; if($parents){ $parents_name = ' ('.$parents->name.')'; } $term_list[$term->slug . '|' . $tax] = $term->name.$parents_name; } } return $term_list; } } if(!function_exists('etc_get_posts_of_grid')) { function etc_get_posts_of_grid($post_type = 'post', $atts = array(), $taxonomy = array(), $args_extra = array()) { extract($atts); if (!empty($post_ids)) { $cms_query = new WP_Query(array( 'post_type' => $post_type, 'post__in' => array_map('intval', explode(',', $post_ids)) )); $cms_paged = 1; $posts = $cms_query->query($cms_query->query_vars); } else { $args = array( 'post_type' => $post_type, 'post_status' => 'publish', 'posts_per_page' => !empty($limit) ? intval($limit) : 6, 'order' => !empty($order) ? $order : 'DESC', 'orderby' => !empty($orderby) ? $orderby : 'date', 'tax_query' => array( 'relation' => 'OR', ) ); $args = array_merge($args, $args_extra); if($currentPostId = get_the_ID()){ $args['post__not_in'] = [ $currentPostId ]; } // if select term on custom post type, move term item to cat. if (!empty($source)) { foreach ($source as $terms) { $tmp = explode('|', $terms); if (isset($tmp[0]) && isset($tmp[1])) { $args['tax_query'][] = array( 'taxonomy' => $tmp[1], 'field' => 'slug', 'operator' => 'IN', 'terms' => array($tmp[0]), ); } } } if (get_query_var('paged')) { $cms_paged = get_query_var('paged'); } elseif (get_query_var('page')) { $cms_paged = get_query_var('page'); } else { $cms_paged = 1; } $cms_query = new WP_Query($args); // if($paged > 1){ // $cms_query->set('paged', $paged); // } $cms_query->set('paged', intval($cms_paged)); $cms_query->set('posts_per_page', !empty($limit) ? intval($limit) : 6); $query = $cms_query->query($cms_query->query_vars); $posts = $query; } if (empty($source)) { $source_new = etc_get_grid_term_list($post_type, $taxonomy); $categories = $source_new['terms']; } else{ $categories = $source; } global $wp_query; $wp_query = $cms_query; $pagination = get_the_posts_pagination(array( 'screen_reader_text' => '', 'mid_size' => 2, 'prev_text' => esc_html__('Back', ETC_TEXT_DOMAIN), 'next_text' => esc_html__('Next', ETC_TEXT_DOMAIN), )); global $paged; $paged = $cms_paged; $categories = is_array($categories) ? $categories : array(); wp_reset_query(); return array( 'posts' => $posts, 'categories' => $categories, 'query' => $cms_query, 'args' => $args, 'paged' => $paged, 'max' => $cms_query->max_num_pages, 'next_link' => next_posts($cms_query->max_num_pages, false), 'total' => $cms_query->found_posts, 'pagination' => $pagination ); } } if(!function_exists('etc_get_term_of_post_to_class')){ function etc_get_term_of_post_to_class($post_id, $tax = array()) { $term_list = array(); foreach ($tax as $taxo) { $term_of_post = wp_get_post_terms($post_id, $taxo); foreach ($term_of_post as $term) { $term_list[] = $term->slug; } } return implode(' ', $term_list); } } if(!function_exists('etc_get_all_page')){ function etc_get_all_page(){ $all_posts = get_posts( array( 'posts_per_page' => -1, 'post_type' => 'page', ) ); if( !empty( $all_posts ) && !is_wp_error( $all_posts ) ) { foreach ( $all_posts as $post ) { $options[ $post->ID ] = strlen( $post->post_title ) > 20 ? substr( $post->post_title, 0, 20 ).'...' : $post->post_title; } } return $options; } } if (!function_exists('etc_post_views')) { function etc_post_views($post_ID) { //Set the name of the Posts Custom Field. $count_key = 'post_views_count'; //Returns values of the custom field with the specified key from the specified post. $count = get_post_meta($post_ID, $count_key, true); $count = $count ? intval($count) : 0; if (is_single()) { $count++; update_post_meta($post_ID, $count_key, $count); } return $count; } } if(!function_exists('etc_sanitize_query_var')){ function etc_sanitize_query_var( $text ) { $text = wp_unslash( $text ); $text = wp_check_invalid_utf8( $text ); if ( false !== strpos( $text, '<' ) ) { $text = wp_pre_kses_less_than( $text ); $text = wp_strip_all_tags( $text ); } $text = preg_replace( '/%[a-f0-9]{2}/i', '', $text ); $text = preg_replace( '/ +/', ' ', $text ); $text = trim( $text, ' ' ); return $text; } } if (!function_exists('etc_include_svg')) { function etc_include_svg($file_name, $dir) { $path = apply_filters('etc_svg_path', ETC_PATH . '/assets/images/svgs/'); include $path . $dir . '/' . $file_name . '.svg'; } } if (!function_exists('etc_get_svg')) { function etc_get_svg($file_name, $dir) { $path = apply_filters('etc_svg_path', ETC_PATH . '/assets/images/svgs/'); ob_start(); include $path . $dir . '/' . $file_name . '.svg'; return ob_get_clean(); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
common.php
12959 bytes
0644
resize-image.php
9217 bytes
0644
widget.php
4116 bytes
0644
N4ST4R_ID | Naxtarrr