PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
templates
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Output elements list to choose from * @var array $elements Set of elements to display */ global $cl_uri; $elements = isset($elements) ? $elements : us_config( 'header-settings.elements', array() ); $output = '<div class="us-bld-window for_adding"><div class="us-bld-window-h"><div class="us-bld-window-header">'; $output .= '<div class="us-bld-window-title">' . __( 'Add element', 'us' ) . '</div>'; $output .= '<div class="us-bld-window-closer" title="' . us_translate( 'Close' ) . '"></div></div>'; $output .= '<div class="us-bld-window-body"><ul class="us-bld-window-list">'; foreach ( $elements as $name ) { $elm = us_config( 'elements/' . $name ); if ( isset( $elm['place_if'] ) AND $elm['place_if'] === FALSE ) { continue; } $output .= '<li class="us-bld-window-item type_' . $name . '" data-name="' . $name . '"><div class="us-bld-window-item-h">'; $output .= '<div class="us-bld-window-item-icon'; if ( isset( $elm['icon'] ) AND ! empty( $elm['icon'] ) ) { $output .= ' ' . $elm['icon']; } $output .= '"></div>'; $output .= '<div class="us-bld-window-item-title">' . ( isset( $elm['title'] ) ? $elm['title'] : $name ) . '</div>'; if ( isset( $elm['description'] ) AND ! empty( $elm['description'] ) ) { $output .= '<div class="us-bld-window-item-description">' . $elm['description'] . '</div>'; } $output .= '</div></li>'; } $output .= '</ul></div></div></div>'; echo $output;
[+]
..
[-] search.php
[edit]
[+]
widgets
[-] content.php
[edit]
[-] 404.php
[edit]
[-] comments.php
[edit]
[-] header.php
[edit]
[-] index.php
[edit]
[-] archive.php
[edit]
[-] elist.php
[edit]
[-] single.php
[edit]
[-] sidebar.php
[edit]
[-] ebuilder.php
[edit]
[-] l-header.php
[edit]
[-] titlebar.php
[edit]
[-] header.css.php
[edit]
[+]
form
[+]
us_grid
[-] footer.php
[edit]
[+]
elements
[-] .templates.php
[edit]
[-] eform.php
[edit]
[-] export_import.php
[edit]
[-] gtemplates.php
[edit]