whoami7 - Manager
:
/
home
/
topsuzmw
/
public_html
/
wp-content
/
themes
/
pixwell
/
templates
/
blocks
/
Upload File:
files >> /home/topsuzmw/public_html/wp-content/themes/pixwell/templates/blocks/raw-html.php
<?php /** Don't load directly */ defined( 'ABSPATH' ) || exit; if ( ! function_exists( 'pixwell_rbc_raw_html' ) ) { function pixwell_rbc_raw_html( $attrs, $content ) { $settings = shortcode_atts( [ 'uuid' => '', 'title' => '', 'text_style' => '', 'viewmore_title' => '', 'viewmore_link' => '', 'wp_autop' => '', ], $attrs ); $settings['classes'] = 'fw-block raw-html none-margin'; ob_start(); pixwell_block_open( $settings ); pixwell_block_header( $settings ); pixwell_block_content_open( $settings ); if ( function_exists( 'pixwell_decode_shortcode' ) ) { if ( pixwell_decode_shortcode( $content ) ) { $content = pixwell_decode_shortcode( $content ); } } if ( ! empty( $attrs['wp_autop'] ) ) { $content = wpautop( $content ); } echo apply_filters( 'the_content', $content ); pixwell_block_content_close(); pixwell_block_close(); return ob_get_clean(); } } if ( ! function_exists( 'pixwell_register_fw_raw_html' ) ) { function pixwell_register_fw_raw_html( $blocks ) { if ( ! is_array( $blocks ) ) { $blocks = []; } $blocks[] = [ 'name' => 'fw_raw_html', 'title' => esc_html__( 'Raw HTML - Shortcodes', 'pixwell' ), 'description' => esc_html__( 'Display raw HTML content or shortcodes', 'pixwell' ), 'section' => [ 'fullwidth', 'content' ], 'img' => get_theme_file_uri( 'assets/images/code.png' ), 'inputs' => [ [ 'name' => 'raw_html', 'type' => 'textarea', 'tab' => 'general', 'title' => esc_html__( 'Raw HTML or Shortcode', 'pixwell' ), 'description' => esc_html__( 'Input a block tagline.', 'pixwell' ), 'default' => '', ], [ 'name' => 'wp_autop', 'type' => 'select', 'tab' => 'general', 'title' => esc_html__( 'WP AutoP', 'pixwell' ), 'description' => esc_html__( 'Changes double line-breaks in the text into HTML paragraphs(p tag).', 'pixwell' ), 'options' => [ '0' => esc_html__( '- Disable -', 'pixwell' ), '1' => esc_html__( 'Enable', 'pixwell' ), ], 'default' => '0', ], [ 'name' => 'title', 'type' => 'text', 'tab' => 'header', 'title' => esc_html__( 'Block Title', 'pixwell' ), 'description' => esc_html__( 'Input a block heading. Leave blank to disable the block header.', 'pixwell' ), 'default' => '', ], [ 'name' => 'viewmore_link', 'type' => 'text', 'tab' => 'header', 'title' => esc_html__( 'View More URL', 'pixwell' ), 'description' => esc_html__( 'Input a custom destination link for the block header.', 'pixwell' ), 'default' => '', ], [ 'name' => 'viewmore_title', 'type' => 'text', 'tab' => 'header', 'title' => esc_html__( 'View More Label', 'pixwell' ), 'description' => esc_html__( 'Input a block tagline.', 'pixwell' ), 'default' => '', ], [ 'name' => 'margin', 'type' => 'dimension', 'tab' => 'design', 'title' => esc_html__( 'Margin', 'pixwell' ), 'description' => esc_html__( 'Select margin top and bottom values (in px) for this block, default is 50px', 'pixwell' ), 'default' => [ 'top' => 0, 'bottom' => 50, ], ], [ 'name' => 'mobile_margin', 'type' => 'dimension', 'tab' => 'design', 'title' => esc_html__( 'Mobile - Margin', 'pixwell' ), 'description' => esc_html__( 'Select margin top and bottom values (in px) for this block in mobile devices, default is 35px', 'pixwell' ), 'default' => [ 'top' => 0, 'bottom' => 35, ], ], [ 'name' => 'header_color', 'type' => 'text', 'tab' => 'design', 'title' => esc_html__( 'Header Style Color', 'pixwell' ), 'description' => esc_html__( 'Input hex color value (ie: #ff8763) for the block header title.', 'pixwell' ), ], [ 'name' => 'text_style', 'type' => 'select', 'tab' => 'design', 'title' => esc_html__( 'Text Style', 'pixwell' ), 'description' => esc_html__( 'Select a text color scheme for the block.', 'pixwell' ), 'options' => [ '0' => esc_html__( '-Dark-', 'pixwell' ), 'light' => esc_html__( 'Light', 'pixwell' ), ], 'default' => 0, ], ], ]; return $blocks; } } add_filter( 'rbc_add_block', 'pixwell_register_fw_raw_html', 2000 );
Copyright ©2021 || Defacer Indonesia