| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/fe2tech/wp-content/themes/contio/inc/ |
Upload File : |
<?php
/**
* Helper functions for the theme
*
* @package Contio
*/
/**
* Get Post List
*/
if(!function_exists('contio_list_post')){
function contio_list_post($post_type = 'post', $default = false){
$post_list = array();
$posts = get_posts(array('post_type' => $post_type,'posts_per_page' => '-1'));
foreach($posts as $post){
$post_list[$post->ID] = $post->post_title;
}
return $post_list;
}
}
/**
* Get theme option based on its id.
*
* @param string $opt_id Required. the option id.
* @param mixed $default Optional. Default if the option is not found or not yet saved.
* If not set, false will be used
*
* @return mixed
*/
function contio_get_opt( $opt_id, $default = false ) {
$opt_name = contio_get_opt_name();
if ( empty( $opt_name ) ) {
return $default;
}
global ${$opt_name};
if ( ! isset( ${$opt_name} ) || ! isset( ${$opt_name}[ $opt_id ] ) ) {
$options = get_option( $opt_name );
} else {
$options = ${$opt_name};
}
if ( ! isset( $options ) || ! isset( $options[ $opt_id ] ) || $options[ $opt_id ] === '' ) {
return $default;
}
if ( is_array( $options[ $opt_id ] ) && is_array( $default ) ) {
foreach ( $options[ $opt_id ] as $key => $value ) {
if ( isset( $default[ $key ] ) && $value === '' ) {
$options[ $opt_id ][ $key ] = $default[ $key ];
}
}
}
return $options[ $opt_id ];
}
/**
* Get theme option based on its id.
*
* @param string $opt_id Required. the option id.
* @param mixed $default Optional. Default if the option is not found or not yet saved.
* If not set, false will be used
*
* @return mixed
*/
function contio_get_page_opt( $opt_id, $default = false ) {
$page_opt_name = contio_get_page_opt_name();
if ( empty( $page_opt_name ) ) {
return $default;
}
$id = get_the_ID();
if ( ! is_archive() && is_home() ) {
if ( ! is_front_page() ) {
$page_for_posts = get_option( 'page_for_posts' );
$id = $page_for_posts;
}
}
// Get page option for Shop Page
if(class_exists('WooCommerce') && is_shop()){
$id = get_option( 'woocommerce_shop_page_id' );
}
return $options = ! empty($id) ? get_post_meta( intval( $id ), $opt_id, true ) : $default;
}
/**
*
* Get post format values.
*
* @param $post_format_key
* @param bool $default
*
* @return bool|mixed
*/
function contio_get_post_format_value( $post_format_key, $default = false ) {
global $post;
return $value = ! empty( $post->ID ) ? get_post_meta( $post->ID, $post_format_key, true ) : $default;
}
/**
* Get opt_name for Redux Framework options instance args and for
* getting option value.
*
* @return string
*/
function contio_get_opt_name() {
return apply_filters( 'contio_opt_name', 'ct_theme_options' );
}
/**
* Get opt_name for Redux Framework options instance args and for
* getting option value.
*
* @return string
*/
function contio_get_page_opt_name() {
return apply_filters( 'contio_page_opt_name', 'ct_page_options' );
}
/**
* Get opt_name for Redux Framework options instance args and for
* getting option value.
*
* @return string
*/
function contio_get_post_opt_name() {
return apply_filters( 'contio_post_opt_name', 'contio_post_options' );
}
/**
* Get page title and description.
*
* @return array Contains 'title'
*/
function contio_get_page_titles() {
$title = '';
// Default titles
if ( ! is_archive() ) {
// Posts page view
if ( is_home() ) {
// Only available if posts page is set.
if ( ! is_front_page() && $page_for_posts = get_option( 'page_for_posts' ) ) {
$title = get_post_meta( $page_for_posts, 'custom_title', true );
if ( empty( $title ) ) {
$title = get_the_title( $page_for_posts );
}
}
if ( is_front_page() ) {
$title = esc_html__( 'Blog', 'contio' );
}
} // Single page view
elseif ( is_page() ) {
$title = get_post_meta( get_the_ID(), 'custom_title', true );
if ( ! $title ) {
$title = get_the_title();
}
} elseif ( is_404() ) {
$title = esc_html__( '404', 'contio' );
} elseif ( is_search() ) {
$title = esc_html__( 'Search results', 'contio' );
} else {
$title = get_post_meta( get_the_ID(), 'custom_title', true );
if ( ! $title ) {
$title = get_the_title();
}
}
} elseif ( is_author() ) {
$title = esc_html__( 'Author:', 'contio' ) . ' ' . get_the_author();
} // Author
else {
$title = get_the_archive_title();
if( (class_exists( 'WooCommerce' ) && is_shop()) ) {
$title = esc_html__( 'Our Products', 'contio' );
}
}
return array(
'title' => $title,
);
}
/**
* Generates an excerpt from the post content with custom length.
* Default length is 55 words, same as default the_excerpt()
*
* The excerpt words amount will be 55 words and if the amount is greater than
* that, then the string '…' will be appended to the excerpt. If the string
* is less than 55 words, then the content will be returned as it is.
*
* @param int $length Optional. Custom excerpt length, default to 55.
* @param int|WP_Post $post Optional. You will need to provide post id or post object if used outside loops.
*
* @return string The excerpt with custom length.
*/
function contio_get_the_excerpt( $length = 55, $post = null ) {
$post = get_post( $post );
if ( empty( $post ) || 0 >= $length ) {
return '';
}
if ( post_password_required( $post ) ) {
return esc_html__( 'Post password required.', 'contio' );
}
$content = apply_filters( 'the_content', strip_shortcodes( $post->post_content ) );
$content = str_replace( ']]>', ']]>', $content );
$excerpt_more = apply_filters( 'contio_excerpt_more', '…' );
$excerpt = wp_trim_words( $content, $length, $excerpt_more );
return $excerpt;
}
/**
* Check if provided color string is valid color.
* Only supports 'transparent', HEX, RGB, RGBA.
*
* @param string $color
*
* @return boolean
*/
function contio_is_valid_color( $color ) {
$color = preg_replace( "/\s+/m", '', $color );
if ( $color === 'transparent' ) {
return true;
}
if ( '' == $color ) {
return false;
}
// Hex format
if ( preg_match( "/(?:^#[a-fA-F0-9]{6}$)|(?:^#[a-fA-F0-9]{3}$)/", $color ) ) {
return true;
}
// rgb or rgba format
if ( preg_match( "/(?:^rgba\(\d+\,\d+\,\d+\,(?:\d*(?:\.\d+)?)\)$)|(?:^rgb\(\d+\,\d+\,\d+\)$)/", $color ) ) {
preg_match_all( "/\d+\.*\d*/", $color, $matches );
if ( empty( $matches ) || empty( $matches[0] ) ) {
return false;
}
$red = empty( $matches[0][0] ) ? $matches[0][0] : 0;
$green = empty( $matches[0][1] ) ? $matches[0][1] : 0;
$blue = empty( $matches[0][2] ) ? $matches[0][2] : 0;
$alpha = empty( $matches[0][3] ) ? $matches[0][3] : 1;
if ( $red < 0 || $red > 255 || $green < 0 || $green > 255 || $blue < 0 || $blue > 255 || $alpha < 0 || $alpha > 1.0 ) {
return false;
}
} else {
return false;
}
return true;
}
/**
* Minify css
*
* @param string $css
*
* @return string
*/
function contio_css_minifier( $css ) {
// Normalize whitespace
$css = preg_replace( '/\s+/', ' ', $css );
// Remove spaces before and after comment
$css = preg_replace( '/(\s+)(\/\*(.*?)\*\/)(\s+)/', '$2', $css );
// Remove comment blocks, everything between /* and */, unless
// preserved with /*! ... */ or /** ... */
$css = preg_replace( '~/\*(?![\!|\*])(.*?)\*/~', '', $css );
// Remove ; before }
$css = preg_replace( '/;(?=\s*})/', '', $css );
// Remove space after , : ; { } */ >
$css = preg_replace( '/(,|:|;|\{|}|\*\/|>) /', '$1', $css );
// Remove space before , ; { } ( ) >
$css = preg_replace( '/ (,|;|\{|}|\(|\)|>)/', '$1', $css );
// Strips leading 0 on decimal values (converts 0.5px into .5px)
$css = preg_replace( '/(:| )0\.([0-9]+)(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}.${2}${3}', $css );
// Strips units if value is 0 (converts 0px to 0)
$css = preg_replace( '/(:| )(\.?)0(%|em|ex|px|in|cm|mm|pt|pc)/i', '${1}0', $css );
// Converts all zeros value into short-hand
$css = preg_replace( '/0 0 0 0/', '0', $css );
// Shortern 6-character hex color codes to 3-character where possible
$css = preg_replace( '/#([a-f0-9])\\1([a-f0-9])\\2([a-f0-9])\\3/i', '#\1\2\3', $css );
return trim( $css );
}
/**
* Header Tracking Code to wp_head hook.
*/
function contio_header_code() {
$site_header_code = contio_get_opt( 'site_header_code' );
if ( $site_header_code !== '' ) {
print wp_kses( $site_header_code, wp_kses_allowed_html() );
}
}
add_action( 'wp_head', 'contio_header_code' );
/**
* Footer Tracking Code to wp_footer hook.
*/
function contio_footer_code() {
$site_footer_code = contio_get_opt( 'site_footer_code' );
if ( $site_footer_code !== '' ) {
print wp_kses( $site_footer_code, wp_kses_allowed_html() );
}
}
add_action( 'wp_footer', 'contio_footer_code' );
/**
* Custom Comment List
*/
function contio_comment_list( $comment, $args, $depth ) {
if ( 'div' === $args['style'] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li';
$add_below = 'div-comment';
}
?>
<<?php echo ''.$tag ?> <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ) ?> id="comment-<?php comment_ID() ?>">
<?php if ( 'div' != $args['style'] ) : ?>
<div id="div-comment-<?php comment_ID() ?>" class="comment-body">
<?php endif; ?>
<div class="comment-inner">
<?php if ($args['avatar_size'] != 0) echo get_avatar($comment, 90); ?>
<div class="comment-content">
<h4 class="comment-title">
<?php printf( '%s', get_comment_author_link() ); ?>
</h4>
<div class="comment-meta">
<span class="comment-date">
<?php echo get_comment_date().' - '.get_comment_time(); ?>
</span>
</div>
<div class="comment-text"><?php comment_text(); ?></div>
<div class="comment-reply">
<?php comment_reply_link( array_merge( $args, array(
'add_below' => $add_below,
'depth' => $depth,
'max_depth' => $args['max_depth']
) ) ); ?>
</div>
</div>
</div>
<?php if ( 'div' != $args['style'] ) : ?>
</div>
<?php endif;
}
function contio_comment_reply_text( $link ) {
$link = str_replace( 'Reply', '<span>'.esc_attr__('Reply', 'contio').'</span>', $link );
return $link;
}
add_filter( 'comment_reply_link', 'contio_comment_reply_text' );
/**
* Add field subtitle to post.
*/
function contio_add_subtitle_field() {
global $post;
$screen = get_current_screen();
if ( in_array( $screen->id, array( 'acm-post' ) ) ) {
$value = get_post_meta( $post->ID, 'post_subtitle', true );
echo '<div class="subtitle"><input type="text" name="post_subtitle" value="' . esc_attr( $value ) . '" id="subtitle" placeholder = "' . esc_attr__( 'Subtitle', 'contio' ) . '" style="width: 100%;margin-top: 4px;"></div>';
}
}
add_action( 'edit_form_after_title', 'contio_add_subtitle_field' );
/**
* Save custom theme meta
*/
function contio_save_meta_boxes( $post_id ) {
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
return;
}
if ( isset( $_POST['post_subtitle'] ) ) {
update_post_meta( $post_id, 'post_subtitle', $_POST['post_subtitle'] );
}
}
add_action( 'save_post', 'contio_save_meta_boxes' );
add_filter( 'ct_extra_post_types', 'contio_add_posttype' );
function contio_add_posttype( $postypes ) {
$portfolio_slug = contio_get_opt( 'portfolio_slug', 'portfolio' );
$portfolio_name = contio_get_opt( 'portfolio_name', esc_attr__('Portfolio', 'contio') );
$postypes['portfolio'] = array(
'status' => true,
'item_name' => $portfolio_name,
'items_name' => $portfolio_name,
'args' => array(
'rewrite' => array(
'slug' => $portfolio_slug,
),
),
);
$service_slug = contio_get_opt( 'service_slug', 'service' );
$service_name = contio_get_opt( 'service_name', esc_attr__('Services', 'contio') );
$postypes['service'] = array(
'status' => true,
'item_name' => $service_name,
'items_name' => $service_name,
'args' => array(
'menu_icon' => 'dashicons-hammer',
'supports' => array(
'title',
'thumbnail',
'editor',
),
'public' => true,
'publicly_queryable' => true,
'rewrite' => array(
'slug' => $service_slug
),
),
'labels' => array()
);
$postypes['footer'] = array(
'status' => true,
'item_name' => esc_html__( 'Footers', 'contio' ),
'items_name' => esc_html__( 'Footers', 'contio' ),
'args' => array(
'menu_icon' => 'dashicons-editor-insertmore',
'supports' => array(
'title',
'editor',
),
'public' => true,
'publicly_queryable' => true,
),
'labels' => array()
);
return $postypes;
}
add_filter( 'ct_extra_taxonomies', 'contio_add_tax' );
function contio_add_tax( $taxonomies ) {
$taxonomies['service-category'] = array(
'status' => true,
'post_type' => array( 'service' ),
'taxonomy' => esc_attr__( 'Service Category', 'contio' ),
'taxcontiomy' => esc_attr__( 'Service Category', 'contio' ),
'taxonomies' => esc_attr__( 'Service Categories', 'contio' ),
'args' => array(),
'labels' => array()
);
return $taxonomies;
}
add_filter( 'ct_enable_megamenu', 'contio_enable_megamenu' );
function contio_enable_megamenu() {
return true;
}
add_filter( 'ct_enable_onepage', 'contio_enable_onepage' );
function contio_enable_onepage() {
return true;
}
/* Add default pagram Carousel */
function contio_get_param_carousel( $atts ) {
$default = array(
'col_xs' => '1',
'col_sm' => '2',
'col_md' => '3',
'col_lg' => '4',
'col_xl' => '4',
'col_xxl' => '4',
'margin' => '30',
'loop' => 'false',
'autoplay' => 'false',
'autoplay_timeout' => '5000',
'smart_speed' => '250',
'center' => 'false',
'stage_padding' => '0',
'arrows' => 'false',
'bullets' => 'false',
);
$new_data = array_merge( $default, $atts );
extract( $new_data );
$carousel = array(
'data-item-xs' => $col_xs,
'data-item-sm' => $col_sm,
'data-item-md' => $col_md,
'data-item-lg' => $col_lg,
'data-item-xl' => $col_xl,
'data-item-xxl' => $col_xxl,
'data-margin' => $margin,
'data-loop' => $loop,
'data-autoplay' => $autoplay,
'data-autoplaytimeout' => $autoplay_timeout,
'data-smartspeed' => $smart_speed,
'data-center' => $center,
'data-arrows' => $arrows,
'data-bullets' => $bullets,
'data-stagepadding' => $stage_padding,
'data-rtl' => is_rtl() ? 'true' : 'false',
);
$carousel_data = '';
foreach ( $carousel as $key => $value ) {
if ( isset( $value ) ) {
$carousel_data .= $key . '=' . $value . ' ';
}
}
$new_data['carousel_data'] = $carousel_data;
return $new_data;
}
/* Show/hide CMS Carousel */
add_filter( 'enable_ct_carousel', 'contio_enable_ct_carousel' );
function contio_enable_ct_carousel() {
return false;
}
/*
* Set post views count using post meta
*/
function contio_set_post_views( $postID ) {
$countKey = 'post_views_count';
$count = get_post_meta( $postID, $countKey, true );
if ( $count == '' ) {
$count = 0;
delete_post_meta( $postID, $countKey );
add_post_meta( $postID, $countKey, '0' );
} else {
$count ++;
update_post_meta( $postID, $countKey, $count );
}
}
/* Create Demo Data */
add_filter('ct_ie_export_mode', 'contio_enable_export_mode');
function contio_enable_export_mode()
{
return false;
}
/* Dashboard Theme */
add_filter('ct_documentation_link',function(){
return 'http://casethemes.net/docs/contio/';
});
add_filter('ct_video_tutorial_link',function(){
return 'https://www.youtube.com/watch?v=epGgd1CrU_M';
});
add_action( 'elementor/editor/before_enqueue_scripts', function() {
wp_enqueue_style( 'contio-elementor-custom-editor', get_template_directory_uri() . '/assets/css/elementor-custom-editor.css', array(), '1.0.0' );
} );
if(class_exists("Case_Theme_Core")){
if(!function_exists("contio_add_icons_to_ct_iconpicker_field")){
add_filter("redux_ct_iconpicker_field/get_icons", "contio_add_icons_to_ct_iconpicker_field");
function contio_add_icons_to_ct_iconpicker_field($icons){
$custom_icons = [
'Flaticon' => array(
array('flaticon-cms' => 'flaticon-cms'),
array('flaticon-palette' => 'flaticon-palette'),
array('flaticon-focus' => 'flaticon-focus'),
array('flaticon-dribbble-logo' => 'flaticon-dribbble-logo'),
array('flaticon-facebook-logo-button' => 'flaticon-facebook-logo-button'),
array('flaticon-twitter-logo-button' => 'flaticon-twitter-logo-button'),
array('flaticon-whatsapp' => 'flaticon-whatsapp'),
array('flaticon-phone-call' => 'flaticon-phone-call'),
array('flaticon-earth-globe' => 'flaticon-earth-globe'),
array('flaticon-sketch' => 'flaticon-sketch'),
array('flaticon-engineer' => 'flaticon-engineer'),
array('flaticon-brickwall' => 'flaticon-brickwall'),
array('flaticon-conveyor' => 'flaticon-conveyor'),
array('flaticon-ruler' => 'flaticon-ruler'),
array('flaticon-drawing' => 'flaticon-drawing'),
array('flaticon-crane' => 'flaticon-crane'),
array('flaticon-design-tool' => 'flaticon-design-tool'),
array('flaticon-project' => 'flaticon-project'),
array('flaticon-contact' => 'flaticon-contact'),
array('flaticon-research' => 'flaticon-research'),
array('flaticon-network' => 'flaticon-network'),
array('flaticon-target' => 'flaticon-target'),
array('flaticon-wallet' => 'flaticon-wallet'),
array('flaticon-bill' => 'flaticon-bill'),
array('flaticon-arrow-pointing-to-right' => 'flaticon-arrow-pointing-to-right'),
array('flaticon-next' => 'flaticon-next'),
array('flaticon-sheet' => 'flaticon-sheet'),
array('flaticon-report' => 'flaticon-report'),
array('flaticon-sheet-1' => 'flaticon-sheet-1'),
array('flaticon-document' => 'flaticon-document'),
array('flaticon-list' => 'flaticon-list'),
array('flaticon-cog-wheel-silhouette' => 'flaticon-cog-wheel-silhouette'),
),
];
$icons = array_merge($custom_icons, $icons);
return $icons;
}
}
}
add_action( 'ct-ie-import-finish', 'contio_update_el_default_kit_option' );
function contio_update_el_default_kit_option(){
$kit_id = contio_get_id_by_slug('default-kit', 'elementor_library');
if(!empty($kit_id))
update_option( 'elementor_active_kit', $kit_id, 'yes' );
}