Guest User

Untitled

a guest
Oct 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. function example_form_alter(&$form, &$form_state, $form_id) {
  2.   if ($form_id == 'user_login_block' || $form_id == 'user_login') {
  3.     $form['actions']['submit']['#value'] = t('Sign in');
  4.   }
  5. }
  6.  
  7. function example_form_user_login_block_alter(&$form, &$form_state, $form_id) {
  8.   $form['actions']['submit']['#value'] = t('Sign in');
  9. }
Add Comment
Please, Sign In to add comment