mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-24 08:41:08 +00:00
12 lines
482 B
PHP
12 lines
482 B
PHP
|
<?php
|
||
|
|
||
|
class SiteOrigin_Widget_ContactForm_Field_Name extends SiteOrigin_Widget_ContactForm_Field_Base {
|
||
|
|
||
|
public function render_field( $options ) {
|
||
|
|
||
|
?>
|
||
|
<input type="text" name="<?php echo esc_attr( $options['field_name'] ) ?>" id="<?php echo esc_attr( $options['field_id'] ) ?>" value="<?php echo esc_attr( $options['value'] ) ?>" class="sow-text-field"<?php echo ( $options['show_placeholder'] ? 'placeholder="' . esc_attr( $options['label'] ) . '"' : '' ) ?>/>
|
||
|
<?php
|
||
|
}
|
||
|
}
|