function list_allowed_values_string
Generates a string representation of an array of 'allowed values'.
This string format is suitable for edition in a textarea.
Parameters
$values: An array of values, where array keys are values and array values are labels.
Return value
The string representation of the $values array:
- Values are separated by a carriage return.
- Each value is in the format "value|label" or "value".
1 call to list_allowed_values_string()
- list_field_settings_form in drupal-7.x/
modules/ field/ modules/ list/ list.module - Implements hook_field_settings_form().
Archivo
- drupal-7.x/
modules/ field/ modules/ list/ list.module, line 347 - Defines list field types that can be used with the Options module.
Código
function list_allowed_values_string($values) {
$lines = array();
foreach ($values as $key => $value) {
$lines[] = "$key|$value";
}
return implode("\n", $lines);
}