PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
config
/
elements
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); $body_fontsize = us_get_option( 'body_fontsize', '16px' ); $misc = us_config( 'elements_misc' ); $design_options = us_config( 'elements_design_options' ); return array( 'title' => __( 'Popup', 'us' ), 'description' => __( 'Window appears in the foreground of the page content', 'us' ), 'icon' => 'fas fa-window-restore', 'params' => array_merge( array( // General 'title' => array( 'title' => us_translate( 'Title' ), 'type' => 'text', 'std' => '', 'holder' => 'div', 'group' => us_translate( 'Content' ), ), 'content' => array( 'type' => 'editor', 'std' => __( 'This content will appear inside a popup...', 'us' ), 'group' => us_translate( 'Content' ), ), // Trigger 'show_on' => array( 'title' => __( 'Show Popup on', 'us' ), 'type' => 'select', 'options' => array( 'btn' => __( 'Button click', 'us' ), 'image' => __( 'Image click', 'us' ), 'selector' => __( 'Custom element click', 'us' ), 'load' => __( 'Page load', 'us' ), ), 'std' => 'btn', 'group' => __( 'Trigger', 'us' ), ), 'btn_label' => array( 'title' => __( 'Button Label', 'us' ), 'type' => 'text', 'std' => __( 'Click Me', 'us' ), 'cols' => 2, 'admin_label' => TRUE, 'show_if' => array( 'show_on', '=', 'btn' ), 'group' => __( 'Trigger', 'us' ), ), 'btn_size' => array( 'title' => __( 'Button Size', 'us' ), 'description' => $misc['desc_font_size'], 'type' => 'text', 'std' => $body_fontsize, 'cols' => 2, 'show_if' => array( 'show_on', '=', 'btn' ), 'group' => __( 'Trigger', 'us' ), ), 'btn_style' => array( 'title' => __( 'Button Style', 'us' ), 'description' => $misc['desc_btn_styles'], 'type' => 'select', 'options' => us_get_btn_styles(), 'std' => '1', 'show_if' => array( 'show_on', '=', 'btn' ), 'group' => __( 'Trigger', 'us' ), ), 'image' => array( 'title' => us_translate( 'Image' ), 'type' => 'upload', 'cols' => 2, 'show_if' => array( 'show_on', '=', 'image' ), 'group' => __( 'Trigger', 'us' ), ), 'image_size' => array( 'title' => __( 'Image Size', 'us' ), 'description' => $misc['desc_img_sizes'], 'type' => 'select', 'options' => us_image_sizes_select_values(), 'std' => 'large', 'cols' => 2, 'show_if' => array( 'show_on', '=', 'image' ), 'group' => __( 'Trigger', 'us' ), ), 'align' => array( 'title' => us_translate( 'Alignment' ), 'type' => 'select', 'options' => array( 'left' => us_translate( 'Left' ), 'center' => us_translate( 'Center' ), 'right' => us_translate( 'Right' ), ), 'std' => 'left', 'show_if' => array( 'show_on', 'in', array( 'btn', 'image', 'text' ) ), 'group' => __( 'Trigger', 'us' ), ), 'btn_icon' => array( 'title' => __( 'Icon', 'us' ), 'type' => 'icon', 'std' => '', 'show_if' => array( 'show_on', '=', 'btn' ), 'group' => __( 'Trigger', 'us' ), ), 'btn_iconpos' => array( 'title' => __( 'Icon Position', 'us' ), 'type' => 'radio', 'options' => array( 'left' => us_translate( 'Left' ), 'right' => us_translate( 'Right' ), ), 'std' => 'left', 'show_if' => array( 'show_on', '=', 'btn' ), 'group' => __( 'Trigger', 'us' ), ), 'trigger_selector' => array( 'title' => __( 'Custom element CSS selector', 'us' ), 'description' => __( 'Use class or ID.', 'us' ) . ' ' . __( 'Examples:', 'us' ) . ' <span class="usof-example">.my-element</span>, <span class="usof-example">#my-element</span>', 'type' => 'text', 'std' => '.my-element', 'show_if' => array( 'show_on', '=', 'selector' ), 'group' => __( 'Trigger', 'us' ), ), 'show_delay' => array( 'title' => __( 'Delay after page load (in seconds)', 'us' ), 'type' => 'text', 'std' => '2', 'show_if' => array( 'show_on', '=', 'load' ), 'group' => __( 'Trigger', 'us' ), ), // Style 'popup_width' => array( 'title' => __( 'Popup Width', 'us' ), 'description' => $misc['desc_width'], 'type' => 'text', 'std' => '600px', 'group' => us_translate( 'Style' ), ), 'popup_padding' => array( 'title' => __( 'Popup Padding', 'us' ), 'description' => $misc['desc_padding'], 'type' => 'text', 'std' => '5%', 'cols' => 2, 'group' => us_translate( 'Style' ), ), 'popup_border_radius' => array( 'title' => __( 'Popup Corners Radius', 'us' ), 'description' => $misc['desc_border_radius'], 'type' => 'text', 'std' => '', 'cols' => 2, 'group' => us_translate( 'Style' ), ), 'title_bgcolor' => array( 'title' => __( 'Title Background Color', 'us' ), 'type' => 'color', 'std' => us_get_color( 'color_content_bg_alt', TRUE ), 'group' => us_translate( 'Style' ), ), 'title_textcolor' => array( 'title' => __( 'Title Text Color', 'us' ), 'type' => 'color', 'std' => us_get_color( 'color_content_heading' ), 'group' => us_translate( 'Style' ), ), 'content_bgcolor' => array( 'title' => __( 'Popup Background Color', 'us' ), 'type' => 'color', 'std' => us_get_color( 'color_content_bg', TRUE ), 'group' => us_translate( 'Style' ), ), 'content_textcolor' => array( 'title' => __( 'Popup Text Color', 'us' ), 'type' => 'color', 'std' => us_get_color( 'color_content_text' ), 'group' => us_translate( 'Style' ), ), 'overlay_bgcolor' => array( 'title' => __( 'Background Overlay', 'us' ), 'type' => 'color', 'std' => 'rgba(0,0,0,0.85)', 'group' => us_translate( 'Style' ), ), 'animation' => array( 'title' => __( 'Animation Type', 'us' ), 'type' => 'select', 'options' => array( 'fadeIn' => __( 'Fade', 'us' ), 'scaleUp' => __( 'Scale Up', 'us' ), 'scaleDown' => __( 'Scale Down', 'us' ), 'slideTop' => __( 'Slide from the Top', 'us' ), 'slideBottom' => __( 'Slide from the Bottom', 'us' ), 'flipHor' => __( '3D Flip', 'us' ) . ' (' . __( 'Horizontal', 'us' ) . ')', 'flipVer' => __( '3D Flip', 'us' ) . ' (' . __( 'Vertical', 'us' ) . ')', ), 'std' => 'fadeIn', 'group' => us_translate( 'Style' ), ), ), $design_options ), );
[+]
..
[-] hwrapper.php
[edit]
[-] gmaps.php
[edit]
[-] dropdown.php
[edit]
[-] search.php
[edit]
[-] page_title.php
[edit]
[-] post_title.php
[edit]
[-] pricing.php
[edit]
[-] carousel.php
[edit]
[-] grid.php
[edit]
[-] add_to_cart.php
[edit]
[-] iconbox.php
[edit]
[-] cform.php
[edit]
[-] image_slider.php
[edit]
[-] additional_menu.php
[edit]
[-] .elements.php
[edit]
[-] product_field.php
[edit]
[-] scroller.php
[edit]
[-] post_comments.php
[edit]
[-] product_ordering.php
[edit]
[-] post_taxonomy.php
[edit]
[-] counter.php
[edit]
[-] itext.php
[edit]
[-] html.php
[edit]
[-] vwrapper.php
[edit]
[-] text.php
[edit]
[-] post_custom_field.php
[edit]
[-] sharing.php
[edit]
[-] page_block.php
[edit]
[-] menu.php
[edit]
[-] flipbox.php
[edit]
[-] popup.php
[edit]
[-] post_author.php
[edit]
[-] socials.php
[edit]
[-] post_date.php
[edit]
[-] btn.php
[edit]
[-] post_image.php
[edit]
[-] message.php
[edit]
[-] breadcrumbs.php
[edit]
[-] progbar.php
[edit]
[-] cta.php
[edit]
[-] post_content.php
[edit]
[-] _example.php
[edit]
[-] post_navigation.php
[edit]
[-] image.php
[edit]
[-] separator.php
[edit]
[-] product_gallery.php
[edit]
[-] contacts.php
[edit]
[-] cart.php
[edit]
[-] person.php
[edit]