open metadatos drupal drupal-7 drupal-fapi

metadatos - ¿Cómo puedo configurar el atributo ID para los elementos de formulario de drupal 7?



metatag drupal (2)

Quiero establecer el atributo de ID de un elemento de un formulario que estoy creando en un módulo utilizando la API de formulario.


Use la propiedad #id :

$form[''foo''] = array( ''#type'' => ''textfield'', ''#title'' => t(''Bar''), ''#id'' => ''baz'', );

Para garantizar la exclusividad, probablemente deba usar drupal_html_id() en la cadena de ID.


//Here is an example $form[''name''] = array( ''#type'' => ''item'', ''#title'' => t(''Title''), ''#attributes'' => array( ''id'' => ''your-id'', ), );