PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
themes
/
flatsome
/
inc
/
builder
/
core
/
server
/
helpers
<?php function ux_builder_html_atts( $attributes ) { $output = ''; foreach( $attributes as $key => $value ) { $output .= is_numeric( $key ) ? $value . ' ' : $key . '="' . $value . '" '; } return trim( $output, ' ' ); } function ux_builder_render( $__template, $__variables = array() ) { extract( $__variables ); unset( $__variables ); if ( in_array( $__template, array( 'editor', 'iframe-frontend', 'media', 'tinymce' ), true ) ) { include ux_builder_path( "/server/templates/{$__template}.php" ); } else { wp_die( sprintf( "No template for <em>%s</em> exist.", esc_html( $__template ) ) ); } }
[-] components.php
[edit]
[-] transformers.php
[edit]
[-] modules.php
[edit]
[-] page.php
[edit]
[-] helpers.php
[edit]
[-] options.php
[edit]
[-] elements.php
[edit]
[-] paths.php
[edit]
[-] posts.php
[edit]
[-] templates.php
[edit]
[-] states.php
[edit]
[-] templating.php
[edit]
[-] shortcodes.php
[edit]
[-] urls.php
[edit]
[-] misc.php
[edit]
[+]
..
[-] breakpoints.php
[edit]
[-] strings.php
[edit]