You appear to be a bot. Output may be restricted
Description
Check the default value for options field
Usage
$string = Grunion_Contact_Form_Field::get_option_value( $value, $index, $options );
Parameters
- $value
- ( mixed ) required –
- $index
- ( mixed ) required –
- $options
- ( mixed ) required –
Returns
string
Source
File name: jetpack/modules/contact-form/grunion-contact-form.php
Lines:
1 to 6 of 6
public function get_option_value( $value, $index, $options ) { if ( empty( $value[ $index ] ) ) { return $options; } return $value[ $index ]; }