Skip to content

Instantly share code, notes, and snippets.

@nicholasruunu
Last active December 20, 2015 19:29
Show Gist options
  • Save nicholasruunu/6183550 to your computer and use it in GitHub Desktop.
Save nicholasruunu/6183550 to your computer and use it in GitHub Desktop.
Removing unnecessary check and shortening the code.
<?php
foreach ($form['submitted'] as &$value) {
$types = array('textfield', 'webform_email', 'textarea');
if (isset($value['#type']) && in_array($value['#type'], $types)) {
$value['#attributes']['placeholder'] = $value['#title'];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment