";
// Print the generated part of table
echo $out;
}
/**
* Generator of the field option for saving plugin settings to database
*/
function spacexchimp_p004_control_field( $name, $label, $placeholder, $help=null, $link=null ) {
// Put value of plugin constants into an array for easier access
$plugin = spacexchimp_p004_plugin();
// Retrieve options from database and declare variables
$options = get_option( $plugin['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 );
}
/**
* Generator of the textarea option for saving plugin settings to database
*/
function spacexchimp_p004_control_textarea( $name, $label, $placeholder, $help=null ) {
// Put value of plugin constants into an array for easier access
$plugin = spacexchimp_p004_plugin();
// Retrieve options from database and declare variables
$options = get_option( $plugin['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 );
}