PluginProbe
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets / 4.1.16
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets v4.1.16
4.5.4 4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 All 146 releases
ultimate-post-kit / includes / feedback-hub / start.php

start.php in Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets 4.1.16, at includes/feedback-hub/start.php

35 lines 655 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main File
4 */
5
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit;
8 }
9
10 if ( ! function_exists( 'rc_dynamic_init' ) ) {
11 function rc_dynamic_init( $params ) {
12
13 if ( is_admin() ) :
14
15 $menu_slug = isset( $params['menu']['slug'] ) ? $params['menu']['slug'] : false;
16 $current_page = isset( $_GET['page'] ) ? $_GET['page'] : false;
17
18 /**
19 * Attach SDK to current page
20 */
21 $params['current_page'] = $current_page;
22 $params['menu_slug'] = $menu_slug;
23
24 /**
25 * Include SDK
26 */
27 require_once dirname( __FILE__ ) . '/notice.php';
28 if ( function_exists( 'rc_sdk_automate' ) ) {
29 rc_sdk_automate( $params );
30 }
31
32 endif;
33 }
34 }
35