summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-22 03:18:30 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-22 03:18:30 +0000
commitafc9df994a10a2af320f21fe87f47f10315dd28b (patch)
treed58d730b096d406e74bf12c84c22d74c281c536b
parentb4c737a2a5ed9bf9905c91107f94e42df36f2c44 (diff)
downloadbrdo-afc9df994a10a2af320f21fe87f47f10315dd28b.tar.gz
brdo-afc9df994a10a2af320f21fe87f47f10315dd28b.tar.bz2
#220559 by eMPee584 and Damien Tournoud: Fix bug in language switcher block that makes all languages active (with tests)
-rw-r--r--includes/common.inc5
-rw-r--r--includes/theme.inc4
-rw-r--r--modules/locale/locale.test76
3 files changed, 83 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 37a90e10a..8c0dd1311 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1803,6 +1803,8 @@ function drupal_attributes($attributes = array()) {
* an HTML string containing a link to the given path.
*/
function l($text, $path, array $options = array()) {
+ global $language;
+
// Merge in defaults.
$options += array(
'attributes' => array(),
@@ -1810,7 +1812,8 @@ function l($text, $path, array $options = array()) {
);
// Append active class.
- if ($path == $_GET['q'] || ($path == '<front>' && drupal_is_front_page())) {
+ if (($path == $_GET['q'] || ($path == '<front>' && drupal_is_front_page())) &&
+ (empty($options['language']) || $options['language']->language == $language->language)) {
if (isset($options['attributes']['class'])) {
$options['attributes']['class'] .= ' active';
}
diff --git a/includes/theme.inc b/includes/theme.inc
index 9fd7f8b08..855f0ef21 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1141,6 +1141,7 @@ function theme_status_messages($display = NULL) {
* A string containing an unordered list of links.
*/
function theme_links($links, $attributes = array('class' => 'links')) {
+ global $language;
$output = '';
if (count($links) > 0) {
@@ -1159,7 +1160,8 @@ function theme_links($links, $attributes = array('class' => 'links')) {
if ($i == $num_links) {
$class .= ' last';
}
- if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<front>' && drupal_is_front_page()))) {
+ if (isset($link['href']) && ($link['href'] == $_GET['q'] || ($link['href'] == '<front>' && drupal_is_front_page()))
+ && (empty($link['language']) || $link['language']->language == $language->language)) {
$class .= ' active';
}
$output .= '<li' . drupal_attributes(array('class' => $class)) . '>';
diff --git a/modules/locale/locale.test b/modules/locale/locale.test
index 4936d14eb..086a36ec2 100644
--- a/modules/locale/locale.test
+++ b/modules/locale/locale.test
@@ -292,3 +292,79 @@ msgstr "supprimer<script>alert('xss');</script>"
EOF;
}
}
+
+/**
+ * Functional tests for the language switching feature.
+ */
+class LanguageSwitchingFunctionalTest extends DrupalWebTestCase {
+
+ function getInfo() {
+ return array(
+ 'name' => t('Language switching'),
+ 'description' => t('Tests for the language switching feature.'),
+ 'group' => t('Locale'),
+ );
+ }
+
+ function setUp() {
+ parent::setUp('locale');
+
+ // Create and login user
+ $admin_user = $this->drupalCreateUser(array('administer blocks', 'administer languages', 'translate interface', 'access administration pages'));
+ $this->drupalLogin($admin_user);
+ }
+
+ function testLanguageBlock() {
+ // Enable the language switching block.
+ $edit = array(
+ 'locale_language-switcher[region]' => 'left',
+ );
+ $this->drupalPost('admin/build/block', $edit, t('Save blocks'));
+
+ // Add language.
+ $edit = array(
+ 'langcode' => 'fr',
+ );
+ $this->drupalPost('admin/settings/language/add', $edit, t('Add language'));
+
+ // Set language negotiation.
+ $edit = array(
+ 'language_negotiation' => LANGUAGE_NEGOTIATION_PATH_DEFAULT,
+ );
+ $this->drupalPost('admin/settings/language/configure', $edit, t('Save settings'));
+
+ // Assert that the language switching block is displayed on the frontpage.
+ $this->drupalGet('');
+ $this->assertText(t('Languages'));
+
+ // Assert that only the current language is marked as active.
+ list($language_switcher) = $this->xpath('//div[@id="block-locale-language-switcher"]');
+ $links = array(
+ 'active' => array(),
+ 'inactive' => array(),
+ );
+ $anchors = array(
+ 'active' => array(),
+ 'inactive' => array(),
+ );
+ foreach ($language_switcher->div->ul->li as $link) {
+ $classes = explode(" ", (string) $link['class']);
+ list($language) = array_intersect($classes, array('en', 'fr'));
+ if (in_array('active', $classes)) {
+ $links['active'][] = $language;
+ }
+ else {
+ $links['inactive'][] = $language;
+ }
+ $anchor_classes = explode(" ", (string) $link->a['class']);
+ if (in_array('active', $anchor_classes)) {
+ $anchors['active'][] = $language;
+ }
+ else {
+ $anchors['inactive'][] = $language;
+ }
+ }
+ $this->assertIdentical($links, array('active' => array('en'), 'inactive' => array('fr')), t('Only the current language list item is marked as active on the language switcher block'));
+ $this->assertIdentical($anchors, array('active' => array('en'), 'inactive' => array('fr')), t('Only the current language anchor is marked as active on the language switcher block'));
+ }
+}