10
Agregar marcador de posición HTML5 a todos los formularios de drupal
Estoy tratando de agregar el atributo de marcador de posición a todos los campos de texto en mi sitio web, pero no tengo suerte. He creado un módulo que anula hook_form_alter function mymodule_form_alter(&$form, &$form_state, $form_id) { foreach ($form as $key => $value) { if ("textfield" == $value["#type"]){ $value['#attributes']["placeholder"] = t($value["#title"]); …