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 modules/
field/ modules/ list/ list.module - Implements hook_field_settings_form().
File
-
modules/
field/ modules/ list/ list.module, line 347
Code
function list_allowed_values_string($values) {
$lines = array();
foreach ($values as $key => $value) {
$lines[] = "{$key}|{$value}";
}
return implode("\n", $lines);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.