function _nodehierarchy_widgets_autocomplete_parent_validate in Node Hierarchy 6.2
Same name and namespace in other branches
- 6.3 nodehierarchy_widgets/nodehierarchy_widgets.module \_nodehierarchy_widgets_autocomplete_parent_validate()
- 7.4 nodehierarchy_widgets/nodehierarchy_widgets.module \_nodehierarchy_widgets_autocomplete_parent_validate()
- 7.2 nodehierarchy_widgets/nodehierarchy_widgets.module \_nodehierarchy_widgets_autocomplete_parent_validate()
Validate a node hierarchy autocomplete in the format 'Tile [nid:xx]' or '[nid:xx]' or 'Title'.
1 string reference to '_nodehierarchy_widgets_autocomplete_parent_validate'
- nodehierarchy_widgets_nodehierarchy_get_parent_selector in nodehierarchy_widgets/
nodehierarchy_widgets.module - Implementation of hook_nodehierarchy_get_parent_selector().
File
- nodehierarchy_widgets/
nodehierarchy_widgets.module, line 164 - Alternative parent selector widgets for Node Hierarchy.
Code
function _nodehierarchy_widgets_autocomplete_parent_validate($element, &$form_state) {
$child_type = $element['#child_type'];
$exclude = $element['#exclude'];
$value = $element['#value'];
$nid = NULL;
if (!empty($value)) {
preg_match('/^(?:\\s*|(.*) )?\\[\\s*nid\\s*:\\s*(\\d+)\\s*\\]$/', $value, $matches);
if (!empty($matches)) {
// Explicit [nid:n].
list(, $title, $nid) = $matches;
if ($err = _nodehierarchy_widgets_is_invalid_parent($nid, $form_state['values']['nid'], $form_state['values']['type'])) {
form_error($element, $err);
}
}
else {
// No explicit nid.
$options = _nodehierarchy_widgets_parent_autocomplete_options($form_state['values']['type'], $form_state['values']['nid'], trim($value));
if (empty($options)) {
form_error($element, t('There are no available parents called \'%name\'', array(
'%name' => $value,
)));
}
else {
$nid = key($options);
}
}
}
form_set_value($element, $nid, $form_state);
}