0byt3m1n1
Path:
/
var
/
www
/
clients
/
client38
/
web37
/
web
/
wp-content
/
plugins
/
us-core
/
config
/
elements
/
[
Home
]
File: html.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Configuration for shortcode: html */ $design_options_params = us_config( 'elements_design_options' ); $hover_options_params = us_config( 'elements_hover_options' ); /** * @return array */ return array( 'title' => __( 'Custom HTML', 'us' ), 'icon' => 'fas fa-code', 'params' => us_set_params_weight( // General section array( 'content' => array( 'description' => sprintf( __( 'Added content will be displayed inside the %s block', 'us' ), '<code><div class="w-html"></div></code>' ), 'type' => 'html', 'encoded' => TRUE, 'std' => base64_encode( '<p>I am raw html block.<br/>Click edit button to change this html</p>' ), 'usb_preview' => TRUE, ), ), $design_options_params, $hover_options_params ), );