Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web284/html/wp-content/plugins/contact-form-7/modules/ |
Current File : //var/www/web284/html/wp-content/plugins/contact-form-7/modules/submit.php |
<?php /** ** A base module for [submit] **/ /* Shortcode handler */ add_action( 'wpcf7_init', 'wpcf7_add_shortcode_submit' ); function wpcf7_add_shortcode_submit() { wpcf7_add_shortcode( 'submit', 'wpcf7_submit_shortcode_handler' ); } function wpcf7_submit_shortcode_handler( $tag ) { $tag = new WPCF7_Shortcode( $tag ); $class = wpcf7_form_controls_class( $tag->type ); $atts = array(); $atts['class'] = $tag->get_class_option( $class ); $atts['id'] = $tag->get_id_option(); $atts['tabindex'] = $tag->get_option( 'tabindex', 'int', true ); $value = isset( $tag->values[0] ) ? $tag->values[0] : ''; if ( empty( $value ) ) $value = __( 'Send', 'contact-form-7' ); $atts['type'] = 'submit'; $atts['value'] = $value; $atts = wpcf7_format_atts( $atts ); $html = sprintf( '<input %1$s />', $atts ); return $html; } /* Tag generator */ add_action( 'admin_init', 'wpcf7_add_tag_generator_submit', 55 ); function wpcf7_add_tag_generator_submit() { if ( ! function_exists( 'wpcf7_add_tag_generator' ) ) return; wpcf7_add_tag_generator( 'submit', __( 'Submit button', 'contact-form-7' ), 'wpcf7-tg-pane-submit', 'wpcf7_tg_pane_submit', array( 'nameless' => 1 ) ); } function wpcf7_tg_pane_submit( $contact_form ) { ?> <div id="wpcf7-tg-pane-submit" class="hidden"> <form action=""> <table> <tr> <td><code>id</code> (<?php echo esc_html( __( 'optional', 'contact-form-7' ) ); ?>)<br /> <input type="text" name="id" class="idvalue oneline option" /></td> <td><code>class</code> (<?php echo esc_html( __( 'optional', 'contact-form-7' ) ); ?>)<br /> <input type="text" name="class" class="classvalue oneline option" /></td> </tr> <tr> <td><?php echo esc_html( __( 'Label', 'contact-form-7' ) ); ?> (<?php echo esc_html( __( 'optional', 'contact-form-7' ) ); ?>)<br /> <input type="text" name="values" class="oneline" /></td> <td></td> </tr> </table> <div class="tg-tag"><?php echo esc_html( __( "Copy this code and paste it into the form left.", 'contact-form-7' ) ); ?><br /><input type="text" name="submit" class="tag wp-ui-text-highlight code" readonly="readonly" onfocus="this.select()" /></div> </form> </div> <?php } ?>
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare