'Display Value'
*
* It is possible to group options together; to do this, change the format of
* $options to an associative array in which the keys are group labels, and the
* values are associative arrays in the normal $options format.
*/
define('options', '_options');
/**
* Keyword: extra
* Used: select boxes.
* Description: Additional HTML to inject into the select element tag.
*/
define('extra', '_extra');
/**
* Keyword: multiple
* Used: select boxes.
* Description: Wether the user may select more than one item.
*/
define('multiple', '_multiple');
/**
* Keyword: button_type
* Used: buttons.
* Description: The type of button to display (cancel or submit)
*/
define('button_type', '_button_type');
/**
* Keyword: error
* Used: All visible form elements.
* Description: Wether or not a form element has been flagged as having an error.
*/
define('error', '_error');
/**
* Multiple elements. For use in the poll module, and for file uploads.
*/
/**
* Keyword: multiple
*/
define('multiple', '_multiple');
/**
* Keyword: min
*/
define('min', '_min');
/**
* Keyword: max
*/
define('max', '_max');
/**
* Keyword: increment
*/
define('increment', '_increment');
function drupal_get_form($form_id, $form, $edit = array(), $callback = NULL) {
$form = _form_builder($form, $edit);
$form[type] = 'default';
if ($content = theme($form_id, $form)) {
// form_id theme function successful. Form specific theme function.
$form[children] = $content;
}
elseif ($content = theme($callback, $form)) {
// callback theme function successful. This allows multiple forms to share one theme function.
$form[children] = $content;
}
$form[type] = 'form';
$form[printed] = FALSE;
//Set the form element.
return form_render($form);
}
function drupal_validate_form($form_id, &$form, $edit = array(), $callback = NULL) {
_form_validate($form, $edit);
if (function_exists($form_id . '_validate', $edit)) {
call_user_func($form_id . '_validate', $form_id, $edit);
}
if (function_exists($callback . '_validate', $edit)) {
call_user_func($callback . '_validate', $form_id, $edit);
}
}
function drupal_execute_form($form_id, $form, $edit = array(), $callback = NULL) {
if (function_exists($form_id . '_execute', $edit)) {
call_user_func($form_id . '_execute', $form_id, $edit);
}
elseif (function_exists($callback . '_execute', $edit)) {
call_user_func($callback . '_execute', $form_id, $edit);
}
}
function _form_validate(&$form, $edit) {
// Recurse through all children.
foreach ($elements as $key => $element) {
if (substr($key, 0, 1) != '_') {
_form_validate($element, $edit[$key]);
}
}
/* Validate the current input */
if (!$elements[validated] && $elements[input]) {
if ($elements[required]) {
if (!$elements[value]) {
form_error($elements, t('%name field is required', array('%name' => $element[title])));
}
if ($elements[valid]) {
if (is_array($elements[valid])) {
foreach ($elements[valid] as $valid) {
if (function_exists('valid_' . $valid)) {
call_user_func('valid_' . $valid, $elements);
}
}
}
else {
if (function_exists('valid_' . $elements[valid])) {
call_user_func('valid_' . $elements[valid], $elements);
}
}
}
}
$elements[validated] = TRUE;
}
}
/**
* Flag an element as having an error.
*/
function form_error(&$element, $message) {
$element[error] = TRUE;
$GLOBALS['form'][$element[name]] = $message;
drupal_set_message($message, 'error');
}
/**
* Adds some required properties to each form element, which are used internally in the form api.
* This function also automatically assigns the value property from the $edit array, provided the
* element doesn't already have an assigned value.
*/
function _form_builder($form, $edit, $parents = array()) {
if (sizeof($parents)) {
if (!$form[name]) {
// Always validate.
$form[validated] = null;
$form[name] = 'edit[' . implode('][', $parents) . ']';
if (!$form[value]) {
$form[value] = !is_array($edit) ? $edit : $form[default_value];
}
$form[parents] = $parents;
$form[id] = 'edit-' . implode('-', $parents);
$form[type] = $form[type] ? $form[type] : 'default';
$form[weight] = $form[weight] ? $form[weight] : 0;
}
}
// Cycle and recurse through all child elements.
foreach ($form as $key => $element) {
if (substr($key, 0, 1) != '_') {
$form[$key] = _form_builder($element, $edit[$key], array_merge($parents, array($key)));
}
}
return $form;
}
/**
* Renders a HTML form given an form tree. Recursively iterates over each of
* each of the form elements generating HTML code. This function is usually
* called from within a theme. To render a form from within a module, use
* drupal_get_form().
*
* @param $elements
* The form tree describing the form.
* @return
* The rendered HTML form.
*/
function form_render(&$elements) {
$content = '';
if (is_array($elements)) {
uasort($elements, "_form_sort");
}
if (!$elements[children]) {
foreach ($elements as $key => $element) {
if (substr($key, 0, 1) != '_') {
$content .= form_render($element);
}
}
if ($content) {
$elements[children] = $content;
}
}
if ($elements[type]) {
/* Use element defaults */
$elements = array_merge(_element_info($elements[type]), $elements);
}
/* Call the form element renderer */
if (!$elements[printed]) {
$content = theme($elements[type], $elements);
$elements[printed] = TRUE;
}
return $content;
}
/**
* Function used by uasort in form render to sort form via weight.
*/
function _form_sort($a, $b) {
if ($a[weight] == $b[weight]) {
return 0;
}
return ($a[weight] < $b[weight]) ? -1 : 1;
}
/**
* Retrieve the default properties for the defined element type.
*/
function _element_info($type = '', $refresh = null) {
static $cache;
$basic_defaults = array(
description => NULL,
attributes => NULL,
required => FALSE
);
if ($refresh || !is_array($cache)) {
$cache = array();
foreach (module_implements('elements') as $module) {
$elements = module_invoke($module, 'elements');
if (is_array($elements)) {
$cache = array_merge($cache, $elements);
}
}
if (sizeof($cache)) {
foreach ($cache as $type => $info) {
$cache[$type] = array_merge($basic_defaults, $cache[$type]);
}
}
}
if ($type) {
return $cache[$type];
}
else {
return array_keys($cache);
}
}
/**
* Format a dropdown menu or scrolling selection box.
*
* @param $element
* An associative array containing the properties of the element.
* Properties used : title, value, options, description, extra, multiple, required
* @return
* A themed HTML string representing the form element.
*
* It is possible to group options together; to do this, change the format of
* $options to an associative array in which the keys are group labels, and the
* values are associative arrays in the normal $options format.
*/
function theme_select($element) {
$select = '';
foreach ($element[options] as $key => $choice) {
if (is_array($choice)) {
$select .= '';
}
else {
$select .= '';
}
}
return theme('form_element', $element[title], '', $element[description], $element[name], $element[required], _form_get_error($element[name]));
}
/**
* Format a group of form items.
*
* @param $element
* An associative array containing the properties of the element.
* Properties used : attributes, title, description, children, collapsible, collapsed
* @return
* A themed HTML string representing the form item group.
*/
function theme_fieldset($element) {
if ($element[collapsible]) {
drupal_add_js('misc/collapse.js');
$element[attributes]['class'] .= ' collapsible';
if ($element[collapsed]) {
$element[attributes]['class'] .= ' collapsed';
}
}
return '