Mercurial > defr > drupal > scald > mee
comparison mee.module @ 18:7ac5a50a9db5
Form: Move the Short content field to the top, and wrap its title in a t()
| author | Franck Deroche <defr@ows.fr> |
|---|---|
| date | Fri, 20 Nov 2009 11:03:08 +0000 |
| parents | a3d780c2979a |
| children | 97a888cb817c |
comparison
equal
deleted
inserted
replaced
| 17:464f6a6e0e7f | 18:7ac5a50a9db5 |
|---|---|
| 540 '#type' => 'value', | 540 '#type' => 'value', |
| 541 '#value' => implode('][', array_merge($element['#parents'], array($field_key))), | 541 '#value' => implode('][', array_merge($element['#parents'], array($field_key))), |
| 542 ); | 542 ); |
| 543 $element['mee']['short'] = array( | 543 $element['mee']['short'] = array( |
| 544 '#type' => 'textarea', | 544 '#type' => 'textarea', |
| 545 '#title' => 'Contenu court', | 545 '#title' => t('Short content'), |
| 546 '#rows' => 5, | 546 '#rows' => 5, |
| 547 '#weight' => 100, | 547 '#weight' => -100, |
| 548 '#default_value' => $element['#value']['short'] | 548 '#default_value' => $element['#value']['short'] |
| 549 ); | 549 ); |
| 550 | 550 |
| 551 | 551 |
| 552 return $element; | 552 return $element; |
