/home/techb158/public_html/wp-content/plugins/kirki/includes/Frontend
NameSizeModeActions
Preview/-0755rm
views/-0755rm
Editor.php88940644editdlrm
Iframe.php28090644editdlrm
TheFrontend.php43840644editdlrm
TheFrontendHooks.php57170644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/kirki/includes/Frontend/TheFrontend.php (4384B)
'', 'popups' => '', ); /** * Initialize the class * * @param string $call_from where from call this instance. * @return void */ public function __construct( $call_from = 'front-end', $staging_version = false ) { if ( $call_from === 'iframe' ) { remove_all_filters( 'the_content' ); } $this->staging_version = $staging_version; if ($this->staging_version) { add_filter('show_admin_bar', '__return_false'); } add_action( 'wp', array( $this, 'collect_all_kirki_type_data' ) ); add_action( 'wp_head', array( $this, 'add_inside_head_tag' ) ); add_filter( 'the_content', array( $this, 'replace_content' ), PHP_INT_MAX ); add_action( 'wp_footer', array( $this, 'add_before_body_tag_end' ) ); //phpcs:ignore WordPress.Security.NonceVerification.Missing,WordPress.Security.NonceVerification.Recommended,WordPress.Security.ValidatedSanitizedInput.MissingUnslash,WordPress.Security.ValidatedSanitizedInput.InputNotSanitized $action = HelperFunctions::sanitize_text( isset( $_GET['action'] ) ? $_GET['action'] : null ); if ( 'front-end' === $call_from && 'kirki' === $action ) { $call_from = 'editor'; } if ( 'front-end' === $call_from ) { new EditWithButton(); } new TheFrontendHooks( $call_from ); $this->call_from = $call_from; } /** * Collect kirki related custom sections html string * * @return void */ public function collect_all_kirki_type_data() { $this->get_current_post_related_dependency(); } /** * Get Post preview related data. * this function is called for enqueueing the icon assets and get only used style blocks * and also get the html string of the preview * * @return void */ public function get_current_post_related_dependency() { $d = HelperFunctions::is_kirki_type_data( null, $this->staging_version ); $this->assets_should_load = ( $d && ( ! empty( $d['blocks'] ) || ! empty( $d['styles'] ) ) ); $GLOBALS['kirki_assets_should_load_for_request'] = $this->assets_should_load; if ( $this->assets_should_load ) { $params = array( 'blocks' => $d['blocks'], 'style_blocks' => $d['styles'], 'root' => 'root', ); $this->kirki_type_html_data['content'] = HelperFunctions::get_html_using_preview_script( $params ); } } /** * Add elements style to the header * * @return void */ public function add_inside_head_tag() { $s = ''; $s .= Preview::getSeoMetaTags(); $s .= Preview::getHeadCustomCode(); $s .= HelperFunctions::get_custom_fonts_tags(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $s; } /** * Replace the content with our kirki data * * @param string $content wp content. * * @return the_contnet */ public function replace_content( $content ) { // $flag = false; if ( 'iframe' === $this->call_from ) { return '
'; } if ( $this->kirki_type_html_data['content'] ) { $content = $this->kirki_type_html_data['content']; } // Decode HTML entities. Example: [gravityform id="1"] → [gravityform id="1"] // Run shortcode manually $content = do_shortcode( $content ); if ( 'migration' === $this->call_from ) { return '
' . $content . '
'; } return $content; } /** * Add script tag to the footer * * @return void */ public function add_before_body_tag_end() { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped $s = ''; if ( 'iframe' !== $this->call_from ) { $s = HelperFunctions::get_page_popups_html(); } if ( $this->kirki_type_html_data['content'] ) { $s .= Preview::getBodyCustomCode(); } // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $s; } }