PATH:
home
/
letacommog
/
conciergerie_leblanc-closed
/
wp-content
/
themes
/
salient
/
nectar
/
helpers
<?php /** * Page related helpers * * @package Salient WordPress Theme * @subpackage helpers * @version 9.0.2 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } add_filter( 'the_password_form', 'nectar_custom_password_form' ); function nectar_custom_password_form() { global $post; $post = get_post( $post ); $label = 'pwbox-' . ( empty( $post->ID ) ? rand() : $post->ID ); $output = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post"> <p>' . __( 'This content is password protected. To view it please enter your password below:', 'default' ) . '</p> <p><label for="' . $label . '">' . __( 'Password:', 'default' ) . ' </label> <input name="post_password" id="' . $label . '" type="password" size="20" /><input type="submit" name="Submit" value="' . esc_attr__( 'Submit', 'default' ) . '" /></p></form>'; return $output; } if ( ! function_exists( 'current_page_url' ) ) { function current_page_url() { $pageURL = 'http'; if ( isset( $_SERVER['HTTPS'] ) ) { if ( $_SERVER['HTTPS'] == 'on' ) { $pageURL .= 's';} } $pageURL .= '://'; if ( $_SERVER['SERVER_PORT'] != '80' ) { $pageURL .= $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'] . $_SERVER['REQUEST_URI']; } else { $pageURL .= $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; } return $pageURL; } } $nectar_using_VC_front_end_editor = (isset($_GET['vc_editable'])) ? sanitize_text_field($_GET['vc_editable']) : ''; $nectar_using_VC_front_end_editor = ($nectar_using_VC_front_end_editor == 'true') ? true : false; function nectar_get_full_page_options() { global $post; $page_full_screen_rows = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows', true ) : ''; $page_full_screen_rows_animation = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_animation', true ) : ''; $page_full_screen_rows_animation_speed = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_animation_speed', true ) : ''; $page_full_screen_rows_anchors = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_anchors', true ) : ''; $page_full_screen_rows_dot_navigation = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_dot_navigation', true ) : ''; $page_full_screen_rows_footer = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_footer', true ) : ''; $page_full_screen_rows_content_overflow = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_content_overflow', true ) : ''; $page_full_screen_rows_bg_img_animation = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_row_bg_animation', true ) : ''; $page_full_screen_rows_mobile_disable = ( isset( $post->ID ) ) ? get_post_meta( $post->ID, '_nectar_full_screen_rows_mobile_disable', true ) : ''; global $nectar_using_VC_front_end_editor; //on feditor certain values are forced if($nectar_using_VC_front_end_editor) { $page_full_screen_rows_animation = 'none'; $page_full_screen_rows_dot_navigation = 'tooltip_alt'; $page_full_screen_rows_footer = 'none'; } $nectar_full_page_options = array( 'page_full_screen_rows' => $page_full_screen_rows, 'page_full_screen_rows_animation' => $page_full_screen_rows_animation, 'page_full_screen_rows_animation_speed' => $page_full_screen_rows_animation_speed, 'page_full_screen_rows_anchors' => $page_full_screen_rows_anchors, 'page_full_screen_rows_dot_navigation' => $page_full_screen_rows_dot_navigation, 'page_full_screen_rows_footer' => $page_full_screen_rows_footer, 'page_full_screen_rows_content_overflow' => $page_full_screen_rows_content_overflow, 'page_full_screen_rows_bg_img_animation' => $page_full_screen_rows_bg_img_animation, 'page_full_screen_rows_mobile_disable' => $page_full_screen_rows_mobile_disable, ); return $nectar_full_page_options; } function nectar_add_pfsr_bodyclass(){ $post_id = (int) vc_get_param( 'vc_post_id' ); $page_full_screen_rows = (isset($post_id)) ? get_post_meta($post_id, '_nectar_full_screen_rows', true) : ''; if($page_full_screen_rows == 'on') { add_filter( 'body_class','nectar_using_pfsr_editor_class' ); } } function nectar_using_pfsr_editor_class( $classes ) { $classes[] = 'nectar_using_pfsr'; return $classes; } if($nectar_using_VC_front_end_editor) { nectar_add_pfsr_bodyclass(); } /** * Get Google Share count * * @deprecated since 8.0 - no longer used * @since 4.0 */ if ( ! function_exists( 'GetGooglePlusShares' ) ) { function GetGooglePlusShares( $url ) { return 0; } }
[+]
..
[-] shortcodes.php
[edit]
[-] redux-salient.php
[edit]
[-] nectar-slider.php
[edit]
[-] media.php
[edit]
[-] open-graph.php
[edit]
[-] widgets.php
[edit]
[-] enqueue-scripts.php
[edit]
[-] nav-menus.php
[edit]
[-] pagination.php
[edit]
[-] wpml.php
[edit]
[-] enqueue-styles.php
[edit]
[-] wp-general.php
[edit]
[-] home-slider.php
[edit]
[-] blog.php
[edit]
[-] search.php
[edit]
[-] woocommerce.php
[edit]
[-] gutenberg.php
[edit]
[-] page.php
[edit]
[-] dynamic-styles.php
[edit]
[-] admin-enqueue.php
[edit]
[-] page-header.php
[edit]
[-] portfolio.php
[edit]
[-] wpbakery-init.php
[edit]
[-] header.php
[edit]