Файловый менеджер - Редактировать - /home/kunzqhe/photostocker/wp-content/themes/themify-ultra/themify/themify-builder/templates/template-signup-form.php
Ðазад
<?php defined( 'ABSPATH' ) || exit; /** * Template Sing Up * * This template can be overridden by copying it to yourtheme/themify-builder/template-signup-form.php. * * Access original fields: $args['mod_settings'] * @author Themify */ $fields_default = array( 'mod_title' => '', 'success_action' => 'c', 'redirect_to' => '', 'i_name' => '', 'i_firstname' => '', 'i_lastname' => '', 'i_username' => '', 'i_email' => '', 'i_password' => '', 'i_bio' => '', 'i_desc' => '', 'i_submit' => '', 'l_name' => __( 'Name', 'themify' ), 'l_firstname' => __( 'First', 'themify' ), 'l_lastname' => __( 'Last', 'themify' ), 'l_username' => __( 'Username', 'themify' ), 'l_email' => __( 'Email', 'themify' ), 'l_password' => __( 'Password', 'themify' ), 'l_bio' => __( 'Short Bio', 'themify' ), 'l_submit' => __( 'Submit', 'themify' ), 'desc' => __( 'Share a little information about yourself.', 'themify' ), 'e_user' => '1', 'e_admin' => '1', 'optin' => 'no', 'optin_label' => __( 'Subscribe to my newsletter', 'themify' ), 'provider' => '', 'gdpr' => '', 'gdpr_label' => '', 'css' => '', 'animation_effect' => '', ); $fields_args = wp_parse_args( $args['mod_settings'], $fields_default ); unset( $args['mod_settings'] ); $fields_default=null; $mod_name=$args['mod_name']; $builder_id = $args['builder_id']; $element_id = $args['module_ID']; $container_class = apply_filters( 'themify_builder_module_classes', array( 'module', 'module-' . $mod_name, $element_id, $fields_args['css'] ), $mod_name, $element_id, $fields_args ); $container_props = apply_filters( 'themify_builder_module_container_props', self::parse_animation_effect($fields_args,array( 'class' => implode( ' ', $container_class ), )), $fields_args, $mod_name, $element_id ); $args = null; $nonce = wp_create_nonce( 'tb_signup_nonce' ); if(Themify_Builder::$frontedit_active===false){ $container_props['data-lazy']=1; } ?> <!-- module signup form --> <div <?php echo self::get_element_attributes( self::sticky_element_props( $container_props, $fields_args ) ); ?>> <?php $container_props = $container_class = null; echo Themify_Builder_Component_Module::get_module_title($fields_args); ?> <form class="tb_signup_form" name="tb_signup_form"> <div class="tb_signup_messages"></div> <?php if ( 'm' === $fields_args['success_action'] && !empty( $fields_args['msg_success'] ) ): ?> <div class="tf_hide tb_signup_messages tb_signup_success"<?php self::add_inline_edit_fields('msg_success')?>><?php echo esc_html( $fields_args['msg_success'] ) ?></div> <?php endif; ?> <div> <label> <span class="tb_signup_label"<?php self::add_inline_edit_fields('l_name')?>><?php if ( $fields_args['i_name'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_name'] ); ?></em><?php endif; ?><?php echo esc_html( $fields_args['l_name'] ) ?></span> </label> <div class="tb_sp_name_wrapper"> <div> <label> <input type="text" name="first_n"> <span<?php self::add_inline_edit_fields('l_firstname')?>><?php if ( $fields_args['i_firstname'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_firstname'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_firstname'] ) ?></span> </label> </div> <div> <label> <input type="text" name="last_n"> <span<?php self::add_inline_edit_fields('l_lastname')?>><?php if ( $fields_args['i_lastname'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_lastname'] ); ?></em><?php endif; ?><?php echo esc_html( $fields_args['l_lastname'] ) ?></span> </label> </div> </div> </div> <div> <label> <span class="tb_signup_label" data-required="yes"<?php self::add_inline_edit_fields('l_username')?>><?php if ( $fields_args['i_username'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_username'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_username'] ) ?></span> <input type="text" name="usr"> </label> </div> <div> <label> <span class="tb_signup_label" data-required="yes"<?php self::add_inline_edit_fields('l_email')?>><?php if ( $fields_args['i_email'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_email'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_email'] ) ?></span> <input type="email" name="email"> </label> </div> <div> <label> <span class="tb_signup_label" data-required="yes"<?php self::add_inline_edit_fields('l_password')?>><?php if ( $fields_args['i_password'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_password'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_password'] ) ?></span> <input type="password" name="pwd"> </label> </div> <div> <label> <span class="tb_signup_label"<?php self::add_inline_edit_fields('l_bio')?>><?php if ( $fields_args['i_bio'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_bio'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_bio'] ) ?></span> <textarea name="bio"></textarea> </label> <?php if ( $fields_args['desc'] !== '' ): ?> <p<?php self::add_inline_edit_fields('desc')?>><?php if ( $fields_args['i_desc'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_desc'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['desc'] ) ?></p> <?php endif; ?> </div> <?php if ( $fields_args['optin'] === 'yes' ) : ?> <?php if ( ! class_exists( 'Builder_Optin_Service' ) ){ include_once( THEMIFY_BUILDER_INCLUDES_DIR. '/optin-services/base.php' ); } $optin_instance = Builder_Optin_Service::get_providers( $fields_args['provider'] ); if ( $optin_instance ) : ?> <div> <label> <input type="hidden" name="optin-provider" value="<?php echo esc_attr( $fields_args['provider'] ); ?>"> <?php foreach ( $optin_instance->get_options() as $provider_field ) : if ( isset( $provider_field['id'] ) && isset( $fields_args[ $provider_field['id'] ] ) ) : ?> <input type="hidden" name="optin-<?php echo $provider_field['id']; ?>" value="<?php echo esc_attr( $fields_args[ $provider_field['id'] ] ); ?>"> <?php endif; endforeach; unset($optin_instance); ?> <input type="checkbox" name="optin" value="1"> <span class="tb_signup_optin"<?php self::add_inline_edit_fields('optin_label')?>><?php echo esc_html( $fields_args['optin_label'] ) ?></span> </label> </div> <?php endif; ?> <?php endif; ?> <?php if ( $fields_args['gdpr'] === 'on' ) : ?> <div> <label> <input type="checkbox" name="gdpr" required="required"> <span class="tb_signup_gdpr"<?php self::add_inline_edit_fields('gdpr_label')?>><?php echo esc_html( $fields_args['gdpr_label'] ); ?></span> </label> </div> <?php endif; ?> <button name="tb_submit"<?php self::add_inline_edit_fields('l_submit')?>><?php if ( $fields_args['i_submit'] !== '' ) : ?><em><?php echo themify_get_icon( $fields_args['i_submit'] ); ?></em><?php endif; ?> <?php echo esc_html( $fields_args['l_submit'] ) ?></button> <?php if('c' === $fields_args['success_action']): ?> <input type="hidden" name="redirect" value="<?php echo esc_url( $fields_args['redirect_to'] ); ?>"> <?php endif; ?> <input type="hidden" name="nonce" value="<?php echo $nonce ?>"> <input type="hidden" name="tb_e_admin" value="<?php echo $fields_args['e_admin']; ?>"> <input type="hidden" name="tb_e_user" value="<?php echo $fields_args['e_user']; ?>"> </form> </div><!-- /module signup form -->
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка