2005-10-07 06:11:12 +00:00
|
|
|
<?php
|
2005-11-01 09:58:01 +00:00
|
|
|
// $Id$
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
/**
|
|
|
|
* @defgroup form Form generation
|
|
|
|
* @{
|
|
|
|
* Functions to enable output of HTML forms and form elements.
|
|
|
|
*
|
|
|
|
* Drupal uses these functions to achieve consistency in its form presentation,
|
|
|
|
* while at the same time simplifying code and reducing the amount of HTML that
|
2006-01-18 19:04:12 +00:00
|
|
|
* must be explicitly generated by modules. See the reference at
|
|
|
|
* http://drupaldocs.org/api/head/file/contributions/docs/developer/topics/forms_api_reference.html
|
|
|
|
* and the quickstart guide at
|
|
|
|
* http://drupaldocs.org/api/head/file/contributions/docs/developer/topics/forms_api.html
|
2005-10-07 06:11:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the key is a property.
|
|
|
|
*/
|
|
|
|
function element_property($key) {
|
2006-01-15 07:14:14 +00:00
|
|
|
return $key[0] == '#';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
/**
|
|
|
|
* Get properties of a form tree element. Properties begin with '#'.
|
|
|
|
*/
|
2005-10-07 06:11:12 +00:00
|
|
|
function element_properties($element) {
|
2005-10-26 01:24:09 +00:00
|
|
|
return array_filter(array_keys((array) $element), 'element_property');
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the key is a child.
|
|
|
|
*/
|
|
|
|
function element_child($key) {
|
2006-01-15 07:14:14 +00:00
|
|
|
return $key[0] != '#';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
/**
|
|
|
|
* Get keys of a form tree element that are not properties (i.e., do not begin with '#').
|
|
|
|
*/
|
2005-10-07 06:11:12 +00:00
|
|
|
function element_children($element) {
|
2005-10-26 01:24:09 +00:00
|
|
|
return array_filter(array_keys((array) $element), 'element_child');
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-18 19:04:12 +00:00
|
|
|
* Processes a form array and produces the HTML output of a form.
|
2005-10-07 06:11:12 +00:00
|
|
|
* If there is input in the $_POST['edit'] variable, this function
|
2006-01-18 19:04:12 +00:00
|
|
|
* will attempt to validate it, using drupal_validate_form(),
|
|
|
|
* and then submit the form using drupal_submit_form().
|
2005-10-07 06:11:12 +00:00
|
|
|
*
|
|
|
|
* @param $form_id
|
|
|
|
* A unique string identifying the form. Allows each form to be themed.
|
|
|
|
* @param $form
|
|
|
|
* An associative array containing the structure of the form.
|
|
|
|
* @param $callback
|
|
|
|
* An optional callback that will be used in addition to the form_id.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function drupal_get_form($form_id, &$form, $callback = NULL) {
|
2005-11-22 21:31:15 +00:00
|
|
|
global $form_values, $form_submitted;
|
2005-10-07 06:11:12 +00:00
|
|
|
$form_values = array();
|
2005-11-22 21:31:15 +00:00
|
|
|
$form_submitted = FALSE;
|
2005-10-26 01:24:09 +00:00
|
|
|
|
2005-10-11 19:44:35 +00:00
|
|
|
$form['#type'] = 'form';
|
|
|
|
if (isset($form['#token'])) {
|
2005-11-06 11:38:56 +00:00
|
|
|
// Make sure that a private key is set:
|
|
|
|
if (!variable_get('drupal_private_key', '')) {
|
|
|
|
variable_set('drupal_private_key', mt_rand());
|
|
|
|
}
|
|
|
|
|
2006-01-25 13:59:05 +00:00
|
|
|
$form['form_token'] = array('#type' => 'hidden', '#default_value' => md5(session_id() . $form['#token'] . variable_get('drupal_private_key', '')));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2006-01-25 13:59:05 +00:00
|
|
|
$form['form_id'] = array('#type' => 'hidden', '#value' => $form_id);
|
2006-02-02 02:10:31 +00:00
|
|
|
if (!isset($form['#id'])) {
|
|
|
|
$form['#id'] = $form_id;
|
|
|
|
}
|
2005-10-26 01:24:09 +00:00
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
$form = array_merge(_element_info('form'), $form);
|
|
|
|
|
2005-11-22 21:31:15 +00:00
|
|
|
if (!isset($form['#validate'])) {
|
|
|
|
if (function_exists($form_id .'_validate')) {
|
2005-12-03 09:44:50 +00:00
|
|
|
$form['#validate'] = array($form_id .'_validate' => array());
|
2005-11-22 21:31:15 +00:00
|
|
|
}
|
|
|
|
elseif (function_exists($callback .'_validate')) {
|
2005-12-03 09:44:50 +00:00
|
|
|
$form['#validate'] = array($callback .'_validate' => array());
|
2005-11-22 21:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-02 15:21:01 +00:00
|
|
|
if (!isset($form['#submit'])) {
|
|
|
|
if (function_exists($form_id .'_submit')) {
|
2005-12-03 09:44:50 +00:00
|
|
|
// we set submit here so that it can be altered but use reference for
|
|
|
|
// $form_values because it will change later
|
|
|
|
$form['#submit'] = array($form_id .'_submit' => array($form_id, &$form_values));
|
2005-11-22 21:31:15 +00:00
|
|
|
}
|
2005-12-02 15:21:01 +00:00
|
|
|
elseif (function_exists($callback .'_submit')) {
|
2005-12-03 09:44:50 +00:00
|
|
|
$form['#submit'] = array($callback .'_submit' => array($form_id, &$form_values));
|
2005-11-22 21:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
foreach (module_implements('form_alter') as $module) {
|
|
|
|
$function = $module .'_form_alter';
|
2005-11-08 20:17:42 +00:00
|
|
|
$function($form_id, $form);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-11-12 03:45:57 +00:00
|
|
|
$form = _form_builder($form_id, $form);
|
2005-10-26 01:24:09 +00:00
|
|
|
|
2005-11-12 03:45:57 +00:00
|
|
|
if (!empty($_POST['edit']) && (($_POST['edit']['form_id'] == $form_id) || ($_POST['edit']['form_id'] == $callback))) {
|
2005-10-11 19:44:35 +00:00
|
|
|
drupal_validate_form($form_id, $form, $callback);
|
2005-11-22 21:31:15 +00:00
|
|
|
if ($form_submitted && !form_get_errors()) {
|
2005-12-02 15:21:01 +00:00
|
|
|
drupal_submit_form($form_id, $form, $callback);
|
2005-10-11 19:44:35 +00:00
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2006-01-10 19:37:27 +00:00
|
|
|
if (theme_get_function($form_id)) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$form['#theme'] = $form_id;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2006-01-10 19:37:27 +00:00
|
|
|
elseif (theme_get_function($callback)) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$form['#theme'] = $callback;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
return form_render($form);
|
|
|
|
}
|
|
|
|
|
|
|
|
function drupal_validate_form($form_id, &$form, $callback = NULL) {
|
|
|
|
global $form_values;
|
|
|
|
|
2005-10-11 19:44:35 +00:00
|
|
|
if (isset($form['#token'])) {
|
2006-01-25 08:40:53 +00:00
|
|
|
if ($form_values['form_token'] != md5(session_id() . $form['#token'] . variable_get('drupal_private_key', ''))) {
|
2005-10-07 06:11:12 +00:00
|
|
|
// setting this error will cause the form to fail validation
|
|
|
|
form_set_error('form_token', t('Validation error, please try again. If this error persists, please contact the site administrator.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-03 09:44:50 +00:00
|
|
|
_form_validate($form, $form_id);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-12-02 15:21:01 +00:00
|
|
|
function drupal_submit_form($form_id, $form, $callback = NULL) {
|
2005-10-07 06:11:12 +00:00
|
|
|
global $form_values;
|
|
|
|
|
2006-01-27 15:57:43 +00:00
|
|
|
unset($GLOBALS['form_values']['submit'], $GLOBALS['form_values']['form_id']);
|
2005-12-02 15:21:01 +00:00
|
|
|
if (isset($form['#submit'])) {
|
2005-12-03 09:44:50 +00:00
|
|
|
foreach ($form['#submit'] as $function => $args) {
|
|
|
|
if (function_exists($function)) {
|
|
|
|
call_user_func_array($function, $args);
|
2005-11-22 21:31:15 +00:00
|
|
|
}
|
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-03 09:44:50 +00:00
|
|
|
function _form_validate($elements, $form_id = NULL) {
|
2005-10-07 06:11:12 +00:00
|
|
|
/* Validate the current input */
|
2005-12-03 09:44:50 +00:00
|
|
|
if (!$elements['#validated'] && ($elements['#input'] || isset($form_id))) {
|
2006-01-19 17:53:53 +00:00
|
|
|
// An empty textfield returns '' so we use empty(). An empty checkbox
|
|
|
|
// and a textfield could return '0' and empty('0') returns TRUE so we
|
|
|
|
// need a special check for the '0' string.
|
2005-11-21 16:21:51 +00:00
|
|
|
if ($elements['#required'] && empty($elements['#value']) && $elements['#value'] !== '0') {
|
2006-01-02 08:35:59 +00:00
|
|
|
form_error($elements, t('%name field is required.', array('%name' => $elements['#title'])));
|
2005-10-11 19:44:35 +00:00
|
|
|
}
|
2005-12-19 14:30:53 +00:00
|
|
|
|
2006-02-02 01:35:32 +00:00
|
|
|
// Add legal choice check if element has #options. Can be skipped, but then you must validate your own element.
|
|
|
|
if (isset($elements['#options']) && isset($elements['#value']) && !isset($elements['#DANGEROUS_SKIP_CHECK'])) {
|
2005-12-19 14:30:53 +00:00
|
|
|
$message = t('Illegal choice in %title.', array('%title' => theme('placeholder', $elements['#title'])));
|
2006-01-06 07:15:47 +00:00
|
|
|
if ($elements['#type'] == 'select') {
|
|
|
|
$options = form_options_flatten($elements['#options']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$options = $elements['#options'];
|
|
|
|
}
|
2005-12-19 14:30:53 +00:00
|
|
|
if (is_array($elements['#value'])) {
|
|
|
|
$value = $elements['#type'] == 'checkboxes' ? array_keys(array_filter($elements['#value'])) : $elements['#value'];
|
|
|
|
foreach ($value as $v) {
|
2006-01-06 07:15:47 +00:00
|
|
|
if (!isset($options[$v])) {
|
2005-12-19 14:30:53 +00:00
|
|
|
form_error($elements, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-01-06 07:15:47 +00:00
|
|
|
elseif (!isset($options[$elements['#value']])) {
|
2005-12-19 14:30:53 +00:00
|
|
|
form_error($elements, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// User-applied checks.
|
2005-11-22 21:31:15 +00:00
|
|
|
if (isset($elements['#validate'])) {
|
2005-12-03 09:44:50 +00:00
|
|
|
foreach ($elements['#validate'] as $function => $args) {
|
|
|
|
$args = array_merge(array($elements), $args);
|
|
|
|
// for the full form we hand over a copy of $form_values
|
|
|
|
if (isset($form_id)) {
|
|
|
|
$args = array_merge(array($form_id, $GLOBALS['form_values']), $args);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2005-12-03 09:44:50 +00:00
|
|
|
if (function_exists($function)) {
|
|
|
|
call_user_func_array($function, $args);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-10-11 19:44:35 +00:00
|
|
|
$elements['#validated'] = TRUE;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2005-12-03 09:44:50 +00:00
|
|
|
|
|
|
|
// Recurse through all children.
|
|
|
|
foreach (element_children($elements) as $key) {
|
|
|
|
if (isset($elements[$key]) && $elements[$key]) {
|
|
|
|
_form_validate($elements[$key]);
|
|
|
|
}
|
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-10-13 10:02:31 +00:00
|
|
|
/**
|
|
|
|
* File an error against a form element. If the name of the element is
|
|
|
|
* edit[foo][bar] then you may pass either foo or foo][bar as $name
|
|
|
|
* foo will set an error for all its children.
|
|
|
|
*/
|
2006-01-24 10:15:03 +00:00
|
|
|
function form_set_error($name = NULL, $message = '') {
|
2005-10-13 10:02:31 +00:00
|
|
|
static $form = array();
|
|
|
|
if (isset($name) && !isset($form[$name])) {
|
|
|
|
$form[$name] = $message;
|
2006-01-24 10:15:03 +00:00
|
|
|
if ($message) {
|
|
|
|
drupal_set_message($message, 'error');
|
|
|
|
}
|
2005-10-13 10:02:31 +00:00
|
|
|
}
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an associative array of all errors.
|
|
|
|
*/
|
|
|
|
function form_get_errors() {
|
|
|
|
$form = form_set_error();
|
|
|
|
if (!empty($form)) {
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the error message filed against the form with the specified name.
|
|
|
|
*/
|
|
|
|
function form_get_error($element) {
|
|
|
|
$form = form_set_error();
|
|
|
|
$key = $element['#parents'][0];
|
|
|
|
if (isset($form[$key])) {
|
|
|
|
return $form[$key];
|
|
|
|
}
|
|
|
|
$key = implode('][', $element['#parents']);
|
|
|
|
if (isset($form[$key])) {
|
|
|
|
return $form[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
/**
|
|
|
|
* Flag an element as having an error.
|
|
|
|
*/
|
2006-01-24 10:15:03 +00:00
|
|
|
function form_error(&$element, $message = '') {
|
2005-10-11 19:44:35 +00:00
|
|
|
$element['#error'] = TRUE;
|
2005-10-13 10:02:31 +00:00
|
|
|
form_set_error(implode('][', $element['#parents']), $message);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-11-12 03:45:57 +00:00
|
|
|
function _form_builder($form_id, $form) {
|
2005-10-07 06:11:12 +00:00
|
|
|
global $form_values;
|
2005-11-22 21:31:15 +00:00
|
|
|
global $form_submitted;
|
2005-10-07 06:11:12 +00:00
|
|
|
/* Use element defaults */
|
2005-10-11 19:44:35 +00:00
|
|
|
if ((!empty($form['#type'])) && ($info = _element_info($form['#type']))) {
|
2006-01-18 19:04:12 +00:00
|
|
|
// overlay $info onto $form, retaining preexisting keys in $form
|
2005-10-07 06:11:12 +00:00
|
|
|
$form += $info;
|
|
|
|
}
|
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
if (isset($form['#input']) && $form['#input']) {
|
2005-11-18 13:48:09 +00:00
|
|
|
if (!isset($form['#name'])) {
|
|
|
|
$form['#name'] = 'edit[' . implode('][', $form['#parents']) . ']';
|
|
|
|
}
|
|
|
|
if (!isset($form['#id'])) {
|
|
|
|
$form['#id'] = 'edit-' . implode('-', $form['#parents']);
|
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2005-11-12 03:45:57 +00:00
|
|
|
$posted = (isset($_POST['edit']) && ($_POST['edit']['form_id'] == $form_id));
|
2005-10-07 06:11:12 +00:00
|
|
|
$edit = $posted ? $_POST['edit'] : array();
|
|
|
|
$ref =& $form_values;
|
2005-10-11 19:44:35 +00:00
|
|
|
foreach ($form['#parents'] as $parent) {
|
2005-10-07 06:11:12 +00:00
|
|
|
$edit = isset($edit[$parent]) ? $edit[$parent] : NULL;
|
|
|
|
$ref =& $ref[$parent];
|
|
|
|
}
|
2006-01-24 10:15:03 +00:00
|
|
|
$form['#ref'] = &$ref;
|
2005-10-11 19:44:35 +00:00
|
|
|
if (!isset($form['#value'])) {
|
2005-11-03 15:42:31 +00:00
|
|
|
if ($posted) {
|
|
|
|
if (isset($edit)) {
|
|
|
|
$form['#value'] = $edit; // normal element
|
|
|
|
}
|
|
|
|
elseif (isset($form['#return_value'])) {
|
2006-01-19 17:53:53 +00:00
|
|
|
$form['#value'] = '0'; // checkbox unchecked
|
2005-11-03 15:42:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!isset($form['#value'])) {
|
2005-12-26 11:14:14 +00:00
|
|
|
$function = $form['#type'] . '_value';
|
|
|
|
if (function_exists($function)) {
|
|
|
|
$function($form);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$form['#value'] = $form['#default_value'];
|
|
|
|
}
|
2005-11-03 15:42:31 +00:00
|
|
|
}
|
2005-10-11 19:44:35 +00:00
|
|
|
}
|
2006-01-24 08:20:45 +00:00
|
|
|
if (isset($form['#form_submitted']) && isset($_POST[$form['#name']])) {
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($_POST[$form['#name']] == $form['#value']) {
|
2005-11-22 21:31:15 +00:00
|
|
|
$form_submitted = $form_submitted || $form['#form_submitted'];
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-18 19:04:12 +00:00
|
|
|
// Allow for elements to expand to multiple elements, e.g. radios, checkboxes and files.
|
2005-11-28 16:37:11 +00:00
|
|
|
if (isset($form['#process']) && !$form['#processed']) {
|
2005-12-03 09:44:50 +00:00
|
|
|
foreach ($form['#process'] as $process => $args) {
|
|
|
|
if (function_exists($process)) {
|
2005-12-05 08:41:29 +00:00
|
|
|
$args = array_merge(array($form), $args);
|
|
|
|
$form = call_user_func_array($process, $args);
|
2005-11-28 16:37:11 +00:00
|
|
|
}
|
|
|
|
}
|
2005-10-11 19:44:35 +00:00
|
|
|
$form['#processed'] = TRUE;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 14:43:42 +00:00
|
|
|
// Set the $form_values key that gets passed to validate and submit.
|
|
|
|
// We call this after #process gets called so that #process has a
|
|
|
|
// chance to update #value if desired.
|
2006-01-24 08:20:45 +00:00
|
|
|
if (isset($form['#input']) && $form['#input']) {
|
2005-12-19 14:43:42 +00:00
|
|
|
$ref = $form['#value'];
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
// Recurse through all child elements.
|
|
|
|
$count = 0;
|
|
|
|
foreach (element_children($form) as $key) {
|
2005-10-26 01:24:09 +00:00
|
|
|
// don't squash an existing tree value
|
2005-11-18 13:48:09 +00:00
|
|
|
if (!isset($form[$key]['#tree'])) {
|
|
|
|
$form[$key]['#tree'] = $form['#tree'];
|
|
|
|
}
|
2005-10-26 01:24:09 +00:00
|
|
|
|
2005-11-18 13:48:09 +00:00
|
|
|
// don't squash existing parents value
|
|
|
|
if (!isset($form[$key]['#parents'])) {
|
2005-12-04 08:14:07 +00:00
|
|
|
// Check to see if a tree of child elements is present. If so, continue down the tree if required.
|
|
|
|
$form[$key]['#parents'] = $form[$key]['#tree'] && $form['#tree'] ? array_merge($form['#parents'], array($key)) : array($key);
|
2005-10-26 01:24:09 +00:00
|
|
|
}
|
|
|
|
|
2006-01-18 19:04:12 +00:00
|
|
|
# Assign a decimal placeholder weight to preserve original array order
|
2005-11-18 13:48:09 +00:00
|
|
|
if (!isset($form[$key]['#weight'])) {
|
|
|
|
$form[$key]['#weight'] = $count/1000;
|
|
|
|
}
|
2005-11-12 03:45:57 +00:00
|
|
|
$form[$key] = _form_builder($form_id, $form[$key]);
|
2005-10-07 06:11:12 +00:00
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
if (isset($form['#after_build']) && function_exists($form['#after_build']) && !isset($form['#after_build_done'])) {
|
2006-01-02 08:35:59 +00:00
|
|
|
$function = $form['#after_build'];
|
2006-01-24 10:15:03 +00:00
|
|
|
$form = $function($form, $form_values);
|
2005-11-21 18:10:26 +00:00
|
|
|
$form['#after_build_done'] = TRUE;
|
2005-10-26 01:24:09 +00:00
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-18 19:04:12 +00:00
|
|
|
* Renders a HTML form given a form tree. Recursively iterates over each of
|
|
|
|
* the form elements, generating HTML code. This function is usually
|
2005-10-07 06:11:12 +00:00
|
|
|
* called from within a theme. To render a form from within a module, use
|
2006-01-18 19:04:12 +00:00
|
|
|
* drupal_get_form().
|
2005-10-07 06:11:12 +00:00
|
|
|
*
|
|
|
|
* @param $elements
|
|
|
|
* The form tree describing the form.
|
|
|
|
* @return
|
|
|
|
* The rendered HTML form.
|
|
|
|
*/
|
|
|
|
function form_render(&$elements) {
|
2005-12-14 20:10:45 +00:00
|
|
|
if (!isset($elements)) {
|
|
|
|
return NULL;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2005-12-14 20:10:45 +00:00
|
|
|
$content = '';
|
|
|
|
uasort($elements, "_form_sort");
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
if (!isset($elements['#children'])) {
|
2005-10-07 06:11:12 +00:00
|
|
|
/* render all the children using a theme function */
|
2006-01-24 08:20:45 +00:00
|
|
|
if (isset($elements['#theme']) && !$elements['#theme_used']) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$elements['#theme_used'] = TRUE;
|
|
|
|
$previous_type = $elements['#type'];
|
|
|
|
$elements['#type'] = 'markup';
|
|
|
|
$content = theme($elements['#theme'], $elements);
|
|
|
|
$elements['#type'] = $previous_type;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
/* render each of the children using form_render and concatenate them */
|
|
|
|
if (!$content) {
|
|
|
|
foreach (element_children($elements) as $key) {
|
|
|
|
$content .= form_render($elements[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($content) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$elements['#children'] = $content;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Call the form element renderer */
|
2006-01-24 08:20:45 +00:00
|
|
|
if (!isset($elements['#printed'])) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$content = theme(($elements['#type']) ? $elements['#type']: 'markup', $elements);
|
|
|
|
$elements['#printed'] = TRUE;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($content) {
|
2006-01-24 08:20:45 +00:00
|
|
|
$prefix = isset($elements['#prefix']) ? $elements['#prefix'] : '';
|
|
|
|
$suffix = isset($elements['#suffix']) ? $elements['#suffix'] : '';
|
|
|
|
return $prefix . $content . $suffix;
|
2005-10-11 19:44:35 +00:00
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-18 19:04:12 +00:00
|
|
|
* Function used by uasort in form_render() to sort form by weight.
|
2005-10-07 06:11:12 +00:00
|
|
|
*/
|
|
|
|
function _form_sort($a, $b) {
|
2005-12-05 21:21:49 +00:00
|
|
|
$a_weight = (is_array($a) && isset($a['#weight'])) ? $a['#weight'] : 0;
|
|
|
|
$b_weight = (is_array($b) && isset($b['#weight'])) ? $b['#weight'] : 0;
|
|
|
|
if ($a_weight == $b_weight) {
|
2005-12-05 09:48:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2005-12-05 21:21:49 +00:00
|
|
|
return ($a_weight < $b_weight) ? -1 : 1;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the default properties for the defined element type.
|
|
|
|
*/
|
|
|
|
function _element_info($type, $refresh = null) {
|
|
|
|
static $cache;
|
2005-10-26 01:24:09 +00:00
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
$basic_defaults = array(
|
2005-10-11 19:44:35 +00:00
|
|
|
'#description' => NULL,
|
|
|
|
'#attributes' => array(),
|
|
|
|
'#required' => FALSE,
|
2005-10-26 01:24:09 +00:00
|
|
|
'#tree' => FALSE,
|
2006-01-15 16:55:35 +00:00
|
|
|
'#parents' => array()
|
2005-10-07 06:11:12 +00:00
|
|
|
);
|
2006-01-15 16:55:35 +00:00
|
|
|
if (!isset($cache) || $refresh) {
|
2005-10-07 06:11:12 +00:00
|
|
|
$cache = array();
|
|
|
|
foreach (module_implements('elements') as $module) {
|
|
|
|
$elements = module_invoke($module, 'elements');
|
2005-12-14 20:10:45 +00:00
|
|
|
if (isset($elements) && is_array($elements)) {
|
2005-11-28 16:37:11 +00:00
|
|
|
$cache = array_merge_recursive($cache, $elements);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sizeof($cache)) {
|
|
|
|
foreach ($cache as $element_type => $info) {
|
2005-11-28 16:37:11 +00:00
|
|
|
$cache[$element_type] = array_merge_recursive($basic_defaults, $info);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cache[$type];
|
|
|
|
}
|
|
|
|
|
2006-01-06 07:15:47 +00:00
|
|
|
function form_options_flatten($array, $reset = TRUE) {
|
|
|
|
static $return;
|
|
|
|
|
|
|
|
if ($reset) {
|
|
|
|
$return = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($array as $key => $value) {
|
|
|
|
if (is_array($value)) {
|
|
|
|
form_options_flatten($value, FALSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$return[$key] = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
/**
|
|
|
|
* Format a dropdown menu or scrolling selection box.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, options, description, extra, multiple, required
|
2005-10-07 06:11:12 +00:00
|
|
|
* @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 = '';
|
2005-12-16 06:23:46 +00:00
|
|
|
$size = $element['#size'] ? ' size="' . $element['#size'] . '"' : '';
|
2006-01-19 09:22:16 +00:00
|
|
|
return theme('form_element', $element['#title'], '<select name="'. $element['#name'] .''. ($element['#multiple'] ? '[]' : '') .'"'. ($element['#multiple'] ? ' multiple="multiple" ' : '') . drupal_attributes($element['#attributes']) .' id="' . $element['#id'] .'" '. $size .'>'. form_select_options($element) .'</select>', $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
|
|
|
}
|
|
|
|
|
|
|
|
function form_select_options($element, $choices = NULL) {
|
|
|
|
if (!isset($choices)) {
|
|
|
|
$choices = $element['#options'];
|
|
|
|
}
|
2006-01-18 19:04:12 +00:00
|
|
|
// array_key_exists() accomodates the rare event where $element['#value'] is NULL.
|
2006-01-13 07:44:59 +00:00
|
|
|
// isset() fails in this situation.
|
|
|
|
$value_valid = isset($element['#value']) || array_key_exists('#value', $element);
|
|
|
|
$value_is_array = is_array($element['#value']);
|
2006-01-19 09:22:16 +00:00
|
|
|
$options = '';
|
|
|
|
foreach ($choices as $key => $choice) {
|
2005-10-07 06:11:12 +00:00
|
|
|
if (is_array($choice)) {
|
2006-01-19 09:22:16 +00:00
|
|
|
$options .= '<optgroup label="'. $key .'">';
|
|
|
|
$options .= form_select_options($element, $choice);
|
|
|
|
$options .= '</optgroup>';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
else {
|
2006-01-19 09:22:16 +00:00
|
|
|
$key = (string)$key;
|
|
|
|
if ($value_valid && ($element['#value'] == $key || ($value_is_array && in_array($key, $element['#value'])))) {
|
2006-01-06 07:15:47 +00:00
|
|
|
$selected = ' selected="selected"';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$selected = '';
|
|
|
|
}
|
2006-01-19 09:22:16 +00:00
|
|
|
$options .= '<option value="'. $key .'"'. $selected .'>'. check_plain($choice) .'</option>';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
2006-01-19 09:22:16 +00:00
|
|
|
return $options;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a group of form items.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-24 08:20:45 +00:00
|
|
|
* Properties used: attributes, title, value, description, children, collapsible, collapsed
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form item group.
|
|
|
|
*/
|
|
|
|
function theme_fieldset($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($element['#collapsible']) {
|
2005-10-07 06:11:12 +00:00
|
|
|
drupal_add_js('misc/collapse.js');
|
|
|
|
|
2005-10-11 19:44:35 +00:00
|
|
|
$element['#attributes']['class'] .= ' collapsible';
|
|
|
|
if ($element['#collapsed']) {
|
|
|
|
$element['#attributes']['class'] .= ' collapsed';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-05 15:45:09 +00:00
|
|
|
return '<fieldset' . drupal_attributes($element['#attributes']) .'>' . ($element['#title'] ? '<legend>'. $element['#title'] .'</legend>' : '') . ($element['#description'] ? '<div class="description">'. $element['#description'] .'</div>' : '') . $element['#children'] . $element['#value'] . "</fieldset>\n";
|
2005-10-07 06:11:12 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a radio button.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: required, return_value, value, attributes, title, description
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form item group.
|
|
|
|
*/
|
|
|
|
function theme_radio($element) {
|
|
|
|
$output = '<input type="radio" ';
|
2005-10-13 10:02:31 +00:00
|
|
|
$output .= 'class="'. _form_get_class('form-radio', $element['#required'], form_get_error($element)) .'" ';
|
2005-10-11 19:44:35 +00:00
|
|
|
$output .= 'name="' . $element['#name'] .'" ';
|
|
|
|
$output .= 'value="'. $element['#return_value'] .'" ';
|
|
|
|
$output .= ($element['#value'] == $element['#return_value']) ? ' checked="checked" ' : ' ';
|
|
|
|
$output .= drupal_attributes($element['#attributes']) .' />';
|
|
|
|
if (!is_null($element['#title'])) {
|
|
|
|
$output = '<label class="option">'. $output .' '. $element['#title'] .'</label>';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2006-02-04 09:50:28 +00:00
|
|
|
return theme('form_element', NULL, $output, $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a set of radio buttons.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, options, description, required and attributes.
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the radio button set.
|
|
|
|
*/
|
|
|
|
function theme_radios($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($element['#title'] || $element['#description']) {
|
2005-10-13 10:02:31 +00:00
|
|
|
return theme('form_element', $element['#title'], $element['#children'], $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
else {
|
2005-10-11 19:44:35 +00:00
|
|
|
return $element['#children'];
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-02 08:35:59 +00:00
|
|
|
/**
|
|
|
|
* Format a password_confirm item.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
|
|
|
* Properties used: title, value, id, required, error.
|
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form item.
|
|
|
|
*/
|
|
|
|
function theme_password_confirm($element) {
|
|
|
|
return theme('form_element', $element['#title'], '<div class="container-inline">'. $element['#children']. '</div>', $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-24 10:15:03 +00:00
|
|
|
* Validate password_confirm element.
|
2006-01-02 08:35:59 +00:00
|
|
|
*/
|
2006-01-24 10:15:03 +00:00
|
|
|
function password_confirm_validate($form) {
|
|
|
|
if (isset($form['pass1']['#value'])) {
|
|
|
|
$pass1 = trim($form['pass1']['#value']);
|
|
|
|
$pass2 = trim($form['pass2']['#value']);
|
|
|
|
$form['pass1']['#ref'] = NULL;
|
|
|
|
$form['pass2']['#ref'] = NULL;
|
2006-01-02 08:35:59 +00:00
|
|
|
if ($pass1 != $pass2) {
|
2006-01-24 10:15:03 +00:00
|
|
|
form_error($form, t('The specified passwords do not match.'));
|
|
|
|
form_error($form['pass1']);
|
|
|
|
form_error($form['pass2']);
|
2006-01-02 08:35:59 +00:00
|
|
|
}
|
2006-01-24 10:15:03 +00:00
|
|
|
$form['#ref'] = $pass1;
|
|
|
|
}
|
|
|
|
elseif ($form['#required'] && !empty($_POST['edit'])) {
|
|
|
|
form_set_error('pass1', t('Password field is required.'));
|
2006-01-02 08:35:59 +00:00
|
|
|
}
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
/**
|
2005-11-21 09:42:14 +00:00
|
|
|
* Format a date selection element.
|
2005-10-07 06:11:12 +00:00
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, options, description, required and attributes.
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
2005-11-21 09:42:14 +00:00
|
|
|
* A themed HTML string representing the date selection boxes.
|
2005-10-07 06:11:12 +00:00
|
|
|
*/
|
|
|
|
function theme_date($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$output = '<div class="container-inline">' . $element['#children'] . '</div>';
|
2005-10-13 10:02:31 +00:00
|
|
|
return theme('form_element', $element['#title'], $output, $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-11-21 09:42:14 +00:00
|
|
|
* Roll out a single date element.
|
2005-10-07 06:11:12 +00:00
|
|
|
*/
|
|
|
|
function expand_date($element) {
|
|
|
|
// Default to current date
|
2005-10-11 19:44:35 +00:00
|
|
|
if (!isset($element['#value'])) {
|
|
|
|
$element['#value'] = array('day' => format_date(time(), 'custom', 'j'),
|
2005-10-07 06:11:12 +00:00
|
|
|
'month' => format_date(time(), 'custom', 'n'),
|
|
|
|
'year' => format_date(time(), 'custom', 'Y'));
|
|
|
|
}
|
|
|
|
|
2006-01-02 08:04:02 +00:00
|
|
|
$element['#tree'] = TRUE;
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
// Determine the order of day, month, year in the site's chosen date format.
|
|
|
|
$format = variable_get('date_format_short', 'm/d/Y');
|
|
|
|
$sort = array();
|
|
|
|
$sort['day'] = max(strpos($format, 'd'), strpos($format, 'j'));
|
|
|
|
$sort['month'] = max(strpos($format, 'm'), strpos($format, 'M'));
|
|
|
|
$sort['year'] = strpos($format, 'Y');
|
|
|
|
asort($sort);
|
|
|
|
$order = array_keys($sort);
|
|
|
|
|
|
|
|
// Output multi-selector for date
|
|
|
|
foreach ($order as $type) {
|
|
|
|
switch ($type) {
|
|
|
|
case 'day':
|
|
|
|
$options = drupal_map_assoc(range(1, 31));
|
|
|
|
break;
|
|
|
|
case 'month':
|
2005-11-21 09:42:14 +00:00
|
|
|
$options = drupal_map_assoc(range(1, 12), 'map_month');
|
2005-10-07 06:11:12 +00:00
|
|
|
break;
|
|
|
|
case 'year':
|
|
|
|
$options = drupal_map_assoc(range(1900, 2050));
|
|
|
|
break;
|
|
|
|
}
|
2005-12-14 13:22:19 +00:00
|
|
|
$parents = $element['#parents'];
|
|
|
|
$parents[] = $type;
|
|
|
|
$element[$type] = array(
|
|
|
|
'#type' => 'select',
|
|
|
|
'#value' => $element['#value'][$type],
|
|
|
|
'#attributes' => $element['#attributes'],
|
|
|
|
'#options' => $options,
|
|
|
|
);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
2005-11-21 09:42:14 +00:00
|
|
|
/**
|
|
|
|
* Helper function for usage with drupal_map_assoc to display month names.
|
|
|
|
*/
|
|
|
|
function map_month($month) {
|
|
|
|
return format_date(gmmktime(0, 0, 0, $month, 2, 1970), 'custom', 'M', 0);
|
|
|
|
}
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2005-12-26 11:14:14 +00:00
|
|
|
/**
|
|
|
|
* Helper function to load value from default value for checkboxes
|
|
|
|
*/
|
|
|
|
function checkboxes_value(&$form) {
|
|
|
|
$value = array();
|
|
|
|
foreach ((array)$form['#default_value'] as $key) {
|
|
|
|
$value[$key] = 1;
|
|
|
|
}
|
|
|
|
$form['#value'] = $value;
|
|
|
|
}
|
|
|
|
|
2006-01-26 13:39:48 +00:00
|
|
|
/**
|
|
|
|
* If no default value is set for weight select boxes, use 0.
|
|
|
|
*/
|
|
|
|
function weight_value(&$form) {
|
|
|
|
if (isset($form['#default_value'])) {
|
|
|
|
$form['#value'] = $form['#default_value'];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$form['#value'] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
/**
|
2006-01-18 19:04:12 +00:00
|
|
|
* Roll out a single radios element to a list of radios,
|
|
|
|
* using the options array as index.
|
2005-10-07 06:11:12 +00:00
|
|
|
*/
|
|
|
|
function expand_radios($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
if (count($element['#options']) > 0) {
|
|
|
|
foreach ($element['#options'] as $key => $choice) {
|
2005-10-07 06:11:12 +00:00
|
|
|
if (!$element[$key]) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$element[$key] = array('#type' => 'radio', '#title' => $choice, '#return_value' => $key, '#default_value' => $element['#default_value'], '#attributes' => $element['#attributes'], '#parents' => $element['#parents'], '#spawned' => TRUE);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a form item.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, description, required, error
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form item.
|
|
|
|
*/
|
|
|
|
function theme_item($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
return theme('form_element', $element['#title'], $element['#value'] . $element['#children'], $element['#description'], $element['#id'], $element['#required'], $element['#error']);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a checkbox.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, return_value, description, required
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the checkbox.
|
|
|
|
*/
|
|
|
|
function theme_checkbox($element) {
|
|
|
|
$checkbox = '<input ';
|
|
|
|
$checkbox .= 'type="checkbox" ';
|
2005-10-13 10:02:31 +00:00
|
|
|
$checkbox .= 'class="'. _form_get_class('form-checkbox', $element['#required'], form_get_error($element)) . '" ';
|
2005-10-11 19:44:35 +00:00
|
|
|
$checkbox .= 'name="'. $element['#name'] .'" ';
|
|
|
|
$checkbox .= 'id="'. $element['#id'].'" ' ;
|
|
|
|
$checkbox .= 'value="'. $element['#return_value'] .'" ';
|
2006-01-05 11:05:14 +00:00
|
|
|
$checkbox .= ($element['#return_value'] == $element['#value']) ? ' checked="checked" ' : ' ';
|
2005-10-11 19:44:35 +00:00
|
|
|
$checkbox .= drupal_attributes($element['#attributes']) . ' />';
|
|
|
|
|
|
|
|
if (!is_null($element['#title'])) {
|
|
|
|
$checkbox = '<label class="option">'. $checkbox .' '. $element['#title'] .'</label>';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2006-02-04 09:50:28 +00:00
|
|
|
return theme('form_element', NULL, $checkbox, $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a set of checkboxes.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the checkbox set.
|
|
|
|
*/
|
|
|
|
function theme_checkboxes($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($element['#title'] || $element['#description']) {
|
2006-02-04 09:50:28 +00:00
|
|
|
return theme('form_element', $element['#title'], $element['#children'], $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
else {
|
2005-10-11 19:44:35 +00:00
|
|
|
return $element['#children'];
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function expand_checkboxes($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$value = is_array($element['#value']) ? $element['#value'] : array();
|
2005-10-26 01:24:09 +00:00
|
|
|
$element['#tree'] = TRUE;
|
2005-10-11 19:44:35 +00:00
|
|
|
if (count($element['#options']) > 0) {
|
|
|
|
if (!isset($element['#default_value']) || $element['#default_value'] == 0) {
|
|
|
|
$element['#default_value'] = array();
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2005-10-11 19:44:35 +00:00
|
|
|
foreach ($element['#options'] as $key => $choice) {
|
2005-10-07 06:11:12 +00:00
|
|
|
if (!isset($element[$key])) {
|
2006-01-08 16:04:58 +00:00
|
|
|
$element[$key] = array('#type' => 'checkbox', '#processed' => TRUE, '#title' => $choice, '#return_value' => $key, '#default_value' => isset($value[$key]), '#attributes' => $element['#attributes']);
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
function theme_submit($element) {
|
|
|
|
return theme('button', $element);
|
|
|
|
}
|
|
|
|
|
|
|
|
function theme_button($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
return '<input type="submit" class="form-'. $element['#button_type'] .'" name="'. $element['#name'] .'" value="'. check_plain($element['#value']) .'" '. drupal_attributes($element['#attributes']) ." />\n";
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a hidden form field.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: value, edit
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the hidden form field.
|
|
|
|
*/
|
|
|
|
function theme_hidden($element) {
|
2005-12-15 22:47:16 +00:00
|
|
|
return '<input type="hidden" name="'. $element['#name'] . '" value="'. check_plain($element['#value']) ."\" " . drupal_attributes($element['#attributes']) ." />\n";
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a textfield.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, description, size, maxlength, required, attributes autocomplete_path
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the textfield.
|
|
|
|
*/
|
|
|
|
function theme_textfield($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$size = $element['#size'] ? ' size="' . $element['#size'] . '"' : '';
|
2006-01-24 08:20:45 +00:00
|
|
|
$class = '';
|
|
|
|
$extra = '';
|
2005-10-11 19:44:35 +00:00
|
|
|
if ($element['#autocomplete_path']) {
|
2005-10-07 06:11:12 +00:00
|
|
|
drupal_add_js('misc/autocomplete.js');
|
|
|
|
$class = ' form-autocomplete';
|
2005-10-11 19:44:35 +00:00
|
|
|
$extra = '<input class="autocomplete" type="hidden" id="'. $element['#id'] .'-autocomplete" value="'. check_url(url($element['#autocomplete_path'], NULL, NULL, TRUE)) .'" disabled="disabled" />';
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
2005-10-13 10:02:31 +00:00
|
|
|
$output = '<input type="text" maxlength="'. $element['#maxlength'] .'" class="'. _form_get_class("form-text$class", $element['#required'], form_get_error($element)) .'" name="'. $element['#name'] .'" id="'. $element['#id'] .'" '. $size .' value="'. check_plain($element['#value']) .'"'. drupal_attributes($element['#attributes']) .' />';
|
|
|
|
return theme('form_element', $element['#title'], $output, $element['#description'], $element['#id'], $element['#required'], form_get_error($element)). $extra;
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a form.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: action, method, attributes, children
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form.
|
|
|
|
*/
|
|
|
|
function theme_form($element) {
|
|
|
|
// Anonymous div to satisfy XHTML compliancy.
|
2005-10-11 19:44:35 +00:00
|
|
|
$action = $element['#action'] ? 'action="' . check_url($element['#action']) . '" ' : '';
|
2006-02-02 02:10:31 +00:00
|
|
|
return '<form '. $action . ' method="'. $element['#method'] .'" '. 'id="'. $element['#id'] .'"'. drupal_attributes($element['#attributes']) .">\n<div>". $element['#children'] ."\n</div></form>\n";
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a textarea.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, description, rows, cols, required, attributes
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the textarea.
|
|
|
|
*/
|
|
|
|
function theme_textarea($element) {
|
2005-12-29 03:59:30 +00:00
|
|
|
$class = 'textarea';
|
|
|
|
if ($element['#resizable'] !== false) {
|
|
|
|
drupal_add_js('misc/textarea.js');
|
|
|
|
$class .= ' resizable';
|
|
|
|
}
|
|
|
|
|
2005-10-11 19:44:35 +00:00
|
|
|
$cols = $element['#cols'] ? ' cols="'. $element['#cols'] .'"' : '';
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2005-12-29 03:59:30 +00:00
|
|
|
return theme('form_element', $element['#title'], '<textarea'. $cols .' rows="'. $element['#rows'] .'" name="'. $element['#name'] .'" id="' . $element['#id'] .'" class="'. _form_get_class($class, $element['#required'], form_get_error($element)) .'"'. drupal_attributes($element['#attributes']) .'>'. check_plain($element['#value']) .'</textarea>', $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format HTML markup for use in forms.
|
|
|
|
*
|
|
|
|
* This is used in more advanced forms, such as theme selection and filter format.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: prefix, value, children and suffix.
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the HTML markup.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function theme_markup($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
return $element['#value'] . $element['#children'];
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a password field.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, value, description, size, maxlength, required, attributes
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form.
|
|
|
|
*/
|
|
|
|
function theme_password($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
$size = $element['#size'] ? ' size="'. $element['#size'] .'" ' : '';
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2006-01-24 08:20:45 +00:00
|
|
|
$output = '<input type="password" maxlength="'. $element['#maxlength'] .'" class="'. _form_get_class('form-text', $element['#required'], form_get_error($element)) .'" name="'. $element['#name'] .'" id="'. $element['#id'] .'" '. $size . drupal_attributes($element['#attributes']) .' />';
|
2005-10-07 06:11:12 +00:00
|
|
|
|
2005-10-13 10:02:31 +00:00
|
|
|
return theme('form_element', $element['#title'], $output, $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a weight selection menu.
|
|
|
|
*
|
|
|
|
* @param $element
|
|
|
|
* An associative array containing the properties of the element.
|
2006-01-18 19:04:12 +00:00
|
|
|
* Properties used: title, delta, description
|
2005-10-07 06:11:12 +00:00
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the form.
|
|
|
|
*/
|
|
|
|
function theme_weight($element) {
|
2005-10-11 19:44:35 +00:00
|
|
|
for ($n = (-1 * $element['#delta']); $n <= $element['#delta']; $n++) {
|
2005-10-07 06:11:12 +00:00
|
|
|
$weights[$n] = $n;
|
|
|
|
}
|
2005-10-11 19:44:35 +00:00
|
|
|
$element['#options'] = $weights;
|
|
|
|
$element['#type'] = 'select';
|
2005-10-07 06:11:12 +00:00
|
|
|
|
|
|
|
return form_render($element);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a file upload field.
|
|
|
|
*
|
|
|
|
* @param $title
|
|
|
|
* The label for the file upload field.
|
|
|
|
* @param $name
|
|
|
|
* The internal name used to refer to the field.
|
|
|
|
* @param $size
|
|
|
|
* A measure of the visible size of the field (passed directly to HTML).
|
|
|
|
* @param $description
|
|
|
|
* Explanatory text to display after the form item.
|
|
|
|
* @param $required
|
|
|
|
* Whether the user must upload a file to the field.
|
|
|
|
* @return
|
|
|
|
* A themed HTML string representing the field.
|
|
|
|
*
|
|
|
|
* For assistance with handling the uploaded file correctly, see the API
|
|
|
|
* provided by file.inc.
|
|
|
|
*/
|
|
|
|
function theme_file($element) {
|
2006-01-09 10:22:12 +00:00
|
|
|
return theme('form_element', $element['#title'], '<input type="file" class="'. _form_get_class('form-file', $element['#required'], form_get_error($element)) .'" name="'. $element['#name'] .'"'. ($element['#attributes'] ? ' '. drupal_attributes($element['#attributes']) : '') .' id="'. form_clean_id($element['#id']) .'" size="'. $element['#size'] ."\" />\n", $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
2006-01-24 10:15:03 +00:00
|
|
|
|
2005-10-07 06:11:12 +00:00
|
|
|
function _form_get_class($name, $required, $error) {
|
2006-01-24 10:15:03 +00:00
|
|
|
return $name. ($required ? ' required' : '') . (isset($error) ? ' error' : '');
|
2005-10-07 06:11:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-01-18 19:04:12 +00:00
|
|
|
* Remove invalid characters from an HTML ID attribute string.
|
2005-10-07 06:11:12 +00:00
|
|
|
*
|
|
|
|
* @param $id
|
|
|
|
* The ID to clean
|
|
|
|
* @return
|
|
|
|
* The cleaned ID
|
|
|
|
*/
|
|
|
|
function form_clean_id($id = NULL) {
|
|
|
|
$id = str_replace('][', '-', $id);
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @} End of "defgroup form".
|
|
|
|
*/
|