golden hour
/home/godaofbq/hyperbarichelp.com/wp-content/plugins/oxygen/component-framework/components/classes
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
comment-form.class.php
7.6 KB
Del
OK
comments-list-templates
-
Del
OK
comments-list.class.php
14.76 KB
Del
OK
data.comment-form.class.php
4.38 KB
Del
OK
div-block.class.php
4.34 KB
Del
OK
dynamic-list.class.php
314.25 KB
Del
OK
easy-posts-templates
-
Del
OK
fancy-icon.class.php
7.65 KB
Del
OK
gallery
-
Del
OK
gallery.class.php
44.75 KB
Del
OK
header-row-center.class.php
1.61 KB
Del
OK
header-row-left.class.php
1.59 KB
Del
OK
header-row-right.class.php
1.6 KB
Del
OK
header-row.class.php
7.22 KB
Del
OK
header.class.php
12.43 KB
Del
OK
headline.class.php
3.35 KB
Del
OK
icon-box.class.php
29.44 KB
Del
OK
inner-content.class.php
5.65 KB
Del
OK
li.class.php
3.08 KB
Del
OK
link-button.class.php
5.73 KB
Del
OK
link-text.class.php
5.25 KB
Del
OK
link-wrapper.class.php
4.74 KB
Del
OK
login-form.class.php
6.88 KB
Del
OK
map.class.php
2.36 KB
Del
OK
menu-pro
-
Del
OK
menu-pro.class.php
72.9 KB
Del
OK
menu.class.php
32.7 KB
Del
OK
modal.class.php
40.33 KB
Del
OK
nestable-shortcode.class.php
3.85 KB
Del
OK
new-columns.class.php
7.94 KB
Del
OK
pricing-box.class.php
80.82 KB
Del
OK
progress-bar.class.php
21.21 KB
Del
OK
reusable.class.php
2.24 KB
Del
OK
rich-text.class.php
4.67 KB
Del
OK
search-form.class.php
6.92 KB
Del
OK
section.class.php
5.68 KB
Del
OK
selector.class.php
3.3 KB
Del
OK
shape-divider
-
Del
OK
shape-divider.class.php
101.89 KB
Del
OK
shortcode.class.php
5.7 KB
Del
OK
sidebar.class.php
2.1 KB
Del
OK
slide.class.php
3.34 KB
Del
OK
slider.class.php
22.83 KB
Del
OK
social-icons.class.php
23.93 KB
Del
OK
soundcloud.class.php
3.92 KB
Del
OK
span.class.php
4.5 KB
Del
OK
superbox.class.php
26.58 KB
Del
OK
svg-icon.class.php
6.78 KB
Del
OK
tab-content.class.php
2.78 KB
Del
OK
tab.class.php
2.79 KB
Del
OK
tabs-contents.class.php
2.8 KB
Del
OK
tabs.class.php
7.16 KB
Del
OK
testimonial.class.php
32.71 KB
Del
OK
text-block.class.php
3.64 KB
Del
OK
toggle.class.php
9.31 KB
Del
OK
toolset-view.class.php
4.67 KB
Del
OK
video.class.php
4.52 KB
Del
OK
widget.class.php
6.67 KB
Del
OK
Edit: login-form.class.php
<?php /** * Comment Form Component Class * * @since 2.0 */ class Oxygen_VSB_Login_Form extends CT_Component { public $param_array; public $css_util; public $query; public $action_name = "oxy_render_login_form"; public $template_file = "login-form.php"; function __construct($options) { // run initialization $this->init( $options ); $this->register_properties(); // Add shortcodes add_shortcode( $this->options['tag'], array( $this, 'add_shortcode' ) ); add_oxygen_element( $this->options['tag'], array( $this, 'add_shortcode' ) ); // change component button place remove_action("ct_toolbar_fundamentals_list", array( $this, "component_button" ) ); add_action("oxy_folder_wordpress_components", array( $this, "component_button" ) ); // output styles add_filter("ct_footer_styles", array( $this, "css" ) ); // add specific options to Basic Styles tab add_action("ct_toolbar_component_settings", array( $this, "settings") ); // render preveiew with AJAX add_filter("template_include", array( $this, "single_template"), 100 ); } /** * Add a [oxy_login_form] shortcode to WordPress * * @since 2.0 * @author Louis & Ilya */ function add_shortcode( $atts, $content, $name ) { if ( ! $this->validate_shortcode( $atts, $content, $name ) ) { return ''; } $options = $this->set_options( $atts ); $this->param_array = shortcode_atts( array( 'form_field_border_color' => "", 'form_field_text_color' => "", 'field_border_radius' => "", 'field_border_radius-unit' => "px", 'submit_button_background_color' => "", 'submit_button_text_color' => "", ), $options, $this->options['tag'] ); $this->param_array["selector"] = esc_attr($options['selector']); if(isset($atts['preview']) && $atts['preview'] == 'true') { // make sure errors are shown $error_reporting = error_reporting(E_ERROR | E_WARNING | E_PARSE); $display_errors = ini_get('display_errors'); ini_set('display_errors', 1); } ob_start(); ?> <?php if (!isset($atts['preview']) || !$atts['preview']) : ?> <div id="<?php echo esc_attr($options['selector']); ?>" class="<?php echo esc_attr($options['classes']); ?>" <?php do_action("oxygen_vsb_component_attr", $options, $this->options['tag']); ?>> <?php endif; ?> <?php wp_login_form(); ?> <?php if (!isset($atts['preview']) || !$atts['preview']) : ?> </div> <?php endif; ?> <?php if(isset($display_errors)) { // set errors params back ini_set('display_errors', $display_errors); error_reporting($error_reporting); } return ob_get_clean(); } /** * Map parameters to CSS properties * * @since 2.0 * @author Louis */ function register_properties() { $this->cssutil = new Oxygen_VSB_CSS_Util; $this->cssutil->register_selector('input, textarea'); $this->cssutil->register_selector('#submit'); $this->cssutil->map_property('form_field_border_color', 'border-color', 'input, textarea'); $this->cssutil->map_property('form_field_text_color', 'color', 'input, textarea'); $this->cssutil->map_property('field_border_radius', 'border-radius', 'input, textarea'); $this->cssutil->map_property('submit_button_background_color', 'background-color', 'input[type=submit]'); $this->cssutil->map_property('submit_button_text_color', 'color', 'input[type=submit]'); } /** * Output CSS based on user params * * @since 2.0 * @author Louis */ function css() { if(is_array($this->param_array)) { echo $this->cssutil->generate_css($this->param_array); } } /** * Basic Styles settings * * @since 2.0 * @author Ilya K. */ function settings() { global $oxygen_toolbar; ?> <div class="oxygen-sidebar-flex-panel" ng-if="isActiveName('<?php echo $this->options['tag']; ?>')"> <div class="oxygen-settings-section-heading"> <?php _e("Form Field", "oxygen"); ?> </div> <div class="oxygen-control-row"> <?php $oxygen_toolbar->colorpicker_with_wrapper("form_field_border_color", __("Border Color", "oxygen") ); ?> </div> <div class="oxygen-control-row"> <?php $oxygen_toolbar->colorpicker_with_wrapper("form_field_text_color", __("Text Color", "oxygen") ); ?> </div> <div class='oxygen-control-row'> <?php $oxygen_toolbar->measure_box_with_wrapper('field_border_radius',__('Border Radius','oxygen'), "px"); ?> </div> <div class="oxygen-settings-section-heading"> <?php _e("Submit Button", "oxygen"); ?> </div> <div class="oxygen-control-row"> <?php $oxygen_toolbar->colorpicker_with_wrapper("submit_button_background_color", __("Background Color", "oxygen") ); ?> </div> <div class="oxygen-control-row"> <?php $oxygen_toolbar->colorpicker_with_wrapper("submit_button_text_color", __("Text Color", "oxygen") ); ?> </div> </div> <?php } } // Create component instance global $oxygen_vsb_components; $oxygen_vsb_components['login_form'] = new Oxygen_VSB_Login_Form( array( 'name' => __('Login Form','oxygen'), 'tag' => 'oxy_login_form', 'advanced' => array( "positioning" => array( "values" => array ( 'width' => '100', 'width-unit' => '%', ) ), "other" => array( "values" => array( 'form_field_border_color' => "", 'form_field_text_color' => "", 'field_border_radius' => "", 'field_border_radius-unit' => "px", 'submit_button_background_color' => "", 'submit_button_text_color' => "", ) ) ), 'not_css_params' => array( 'form_field_border_color', 'form_field_text_color', 'field_border_radius', 'field_border_radius-unit', 'submit_button_background_color', 'submit_button_text_color', ) ));
Save