Мультиязычный исчезающий текст в поиске

Главные вкладки

Аватар пользователя Heihachi88 Heihachi88 1 ноября 2010 в 10:42

Помогите доработать код из template.php для того чтобы при нажатии на форму поиска исчезал текст на разных языках, вот кусок кода:

<?php  // Add a custom class to the search box
  
$vars['form']['search_theme_form']['#attributes'] = array('class' => 'txt',
                                                              
'onfocus' => "if (this.value == 'Search this site') {this.value = '';}",
                                                              
'onblur' => "if (this.value == '') {this.value = 'Search this site';}");?>

Комментарии

Аватар пользователя vgoodvin vgoodvin 1 ноября 2010 в 10:49

В яваскрипте для перевода можно использовать функцию Drupal.t
У вас получится так

<?php  // Add a custom class to the search box
  $vars['form']['search_theme_form']['#attributes'] = array('class' => 'txt',
                                                              'onfocus' => "if (this.value == Drupal.t('Search this site')) {this.value = '';}",
                                                              'onblur' => "if (this.value == '') {this.value = Drupal.t('Search this site');}");?>