- Sep 05, 2006
-
-
Neil Drumm authored
-
Neil Drumm authored
-
- Aug 31, 2006
-
-
Dries Buytaert authored
-
Neil Drumm authored
-
- Aug 27, 2006
-
-
Dries Buytaert authored
-
- Aug 25, 2006
-
-
Neil Drumm authored
-
- Aug 23, 2006
-
-
Neil Drumm authored
-
Neil Drumm authored
-
- Aug 22, 2006
-
-
Dries Buytaert authored
-
- Aug 21, 2006
-
-
Dries Buytaert authored
-
- Aug 20, 2006
-
-
Dries Buytaert authored
- Patch #77924 by RobRoy: fixed race condition in block administration that might have caused data loss.
-
Steven Wittens authored
-
- Aug 18, 2006
-
-
Dries Buytaert authored
- Patch #77919 by chx, eaton, moshe, et al: enable programmaticaly submitted forms via the pull model.
-
Steven Wittens authored
See: http://drupal.org/node/64279#t-placeholders
-
- Aug 14, 2006
-
-
Neil Drumm authored
-
- Aug 10, 2006
-
-
Dries Buytaert authored
- Patch #74326 by Eaton, Royboy, chx, et al: building $node->body with arrays like FAPI for viewing. Once again, we're paving the path for CCK in core ... :)
-
- Aug 07, 2006
-
-
Dries Buytaert authored
-
- Jul 31, 2006
-
-
Dries Buytaert authored
-
- Jul 02, 2006
-
-
Neil Drumm authored
-
- May 26, 2006
-
-
Dries Buytaert authored
-
- May 23, 2006
-
-
Neil Drumm authored
-
- May 07, 2006
-
-
Neil Drumm authored
-
- Apr 26, 2006
-
-
Gerhard Killesreiter authored
-
- Apr 17, 2006
-
-
Dries Buytaert authored
-
- Apr 04, 2006
-
-
Steven Wittens authored
-
- Mar 04, 2006
-
-
Dries Buytaert authored
* Converts the block administration page to the fapi model. * Removes some 'type=markup' elements. * Adds a form_render($form['form_id']); in the theme function. Adding a form_render($form) just outputs an unthemed form. I suspect this is because of the heavy nesting of form elements and the rather dodgy array declaration, but I'm unsure. * Documentation/language fixes.
-
- Feb 21, 2006
-
-
Dries Buytaert authored
-
- Feb 10, 2006
-
-
Dries Buytaert authored
-
- Jan 29, 2006
-
-
Dries Buytaert authored
-
- Jan 26, 2006
-
-
Dries Buytaert authored
-
- Jan 24, 2006
-
-
Dries Buytaert authored
-
- Jan 20, 2006
-
-
Dries Buytaert authored
When a form element doesn't specify a #weight, it is assumed internally as #weight 0. However, to ensure that our form elements display visually *as they were defined in the array* we, in form_builder, count the number of elements, divide by 1000, and set that as the weight: # Assign a decimal placeholder weight to preserve original array order if (!isset($form[$key]['#weight'])) { $form[$key]['#weight'] = $count/1000; } The above code will set the #weights of elements that have not defined a weight to something like 0 (first element in array definition), 0.001, 0.002, and so on. However, anytime a form element *explicitly* defines a #weight of 0, that #weight is kept at exactly 0, which would cause that form element to appear BEFORE the elements that didn't have a #weight defined (and thus received a #weight such as 0.002). Consider the following pseudo example: $form['game_title'] = array( '#type' => 'textfield', ... ); $form['game_description'] = array( '#type' => 'textarea', ... ); $form['game_format'] = filter_form(variable_get('game_format', NULL)); return $form; Here, we're not definiing weights on our two textfields. We then add an filter_form. The second parameter of the filter_form is $weight, which defaults to 0. After this $form hits form_builder, we have weights 0 (game_title), 0.001 (game_description), and 0 (filter_form) respectively. This is then sorted by weight, which causes filter_form (the third element in the array) to appear BEFORE game_description (0 is lighter than 0.001). The short lesson is: explicitly defining #weight 0 for a form element is probably a bad idea. This patch changes the default #weight of filter_form to NULL, instead of 0, and also removes any other explicit setting of #weight to 0 in core.
-
- Jan 19, 2006
-
-
Dries Buytaert authored
-
- Jan 12, 2006
-
-
Dries Buytaert authored
-
- Jan 08, 2006
-
-
Steven Wittens authored
-
- Jan 06, 2006
-
-
Dries Buytaert authored
-
- Dec 14, 2005
-
-
Dries Buytaert authored
-
- Dec 05, 2005
-
-
Dries Buytaert authored
- Patch #39778 by chx: obliterate nodeapi op form in favor of the forms API's way of doing things. Tested with help from webchick.
-
- Dec 02, 2005
-
-
Dries Buytaert authored
-
- Nov 16, 2005
-
-
Dries Buytaert authored
-