";
// Print the generated part of table
echo $out;
}
/**
* Generatator of the fields for saving settings data to database
*/
function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
// Read options from database and declare variables
$options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
$value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
$label_link = !empty( $link ) ? "$label" : "$label";
// Generate a part of table
$out = "
$label_link
";
// Print the generated part of table
echo $out;
// Print a help text
spacexchimp_p004_control_help( $help );
}
/**
* Generatator of the textarea fields for saving settings data to database
*/
function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
// Read options from database and declare variables
$options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
$value = !empty( $options[$name] ) ? esc_attr( $options[$name] ) : '';
// Generate a part of table
$out = "
$label
";
// Print the generated part of table
echo $out;
// Print a help text
spacexchimp_p004_control_help( $help );
}