Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. function bootstrap_subtheme_adl_admin_button($variables) {
  3. $element = $variables['element'];
  4. $value = $element['#value'];
  5. if (!empty($element['#icon'])) {
  6. if ($element['#icon_position'] === 'before') {
  7. $value = $element['#icon'] . ' ' . $value;
  8. }
  9. elseif ($element['#icon_position'] === 'after') {
  10. $value .= ' ' . $element['#icon'];
  11. }
  12. }
  13.  
  14. return '<input' . drupal_attributes($element['#attributes']) . '>n';
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement