PluginProbe
Borderless – Addons and Templates for Elementor / 1.3.6
Borderless – Addons and Templates for Elementor v1.3.6
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 All 78 releases
borderless / modules / elementor / helper.php

helper.php in Borderless – Addons and Templates for Elementor 1.3.6, at modules/elementor/helper.php

85 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // don't load directly
4 defined( 'ABSPATH' ) || exit;
5
6 if ( ! function_exists( 'get_contact_form_7_posts' ) ) :
7 function get_contact_form_7_posts(){
8
9 $args = array('post_type' => 'wpcf7_contact_form', 'posts_per_page' => -1);
10
11 $cf7_form_list=[];
12
13 if( $cf7_forms = get_posts($args)){
14 foreach ( $cf7_forms as $form ) {
15 (int)$cf7_form_list[$form->ID] = $form->post_title;
16 }
17 }
18 else{
19 (int)$cf7_form_list['0'] = esc_html__('No contect From 7 form found', 'borderless');
20 }
21 return $cf7_form_list;
22 }
23 endif;
24
25
26 // ajax request handler
27 if( !function_exists('get_contact_form_7_posts_by_ajax')) {
28
29 function get_contact_form_7_posts_by_ajax(){
30 $cf7_form_list = get_contact_form_7_posts();
31 echo json_encode($cf7_form_list);
32 wp_die();
33 }
34
35 }
36
37 //ajax action
38 add_action( 'wp_ajax_cf7_data', 'get_contact_form_7_posts_by_ajax' );
39
40
41 if ( ! function_exists( 'get_all_pages' ) ) :
42
43 function get_all_pages(){
44
45 $args = array('post_type' => 'page', 'posts_per_page' => -1);
46
47 $catlist=[];
48
49 if( $categories = get_posts($args)){
50 foreach ( $categories as $category ) {
51 (int)$catlist[$category->ID] = $category->post_title;
52 }
53 }
54 else{
55 (int)$catlist['0'] = esc_html__('No Pages Found!', 'borderless');
56 }
57 return $catlist;
58 }
59
60 endif;
61
62
63 if( !function_exists('promotional_notice_dismiss_handler')){
64
65 function promotional_notice_dismiss_handler(){
66 // Pick up the notice "type" - passed via jQuery (the "data-notice" attribute on the notice)
67 $type = $_POST['type'];
68
69 $status = $_POST['status'];
70
71 if($status == 'remind-me-later'){
72 // Store it in the options table
73 update_option( 'dismissed-' . $type . "-at", date('Y-m-d') );
74
75 }elseif( $status == 'never-show'){
76
77 update_option( 'dismissed-'. $type . '-never', TRUE );
78
79 }else{
80 update_option( 'dismissed-'. $type . '-never', TRUE );
81 }
82 }
83 }
84
85 add_action('wp_ajax_dismissed_promotional_notice_handler', 'promotional_notice_dismiss_handler');