mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 09:43:01 +02:00
Language Switch:
* display language name next to flag (and enlarge the flag box to ~400px) * force the links color inside the language box because the background color is forced : on a theme like "grum dark II", the result is really awful, impossible to read. * the current language is not removed from the list, this ways the list is not reorganized depending on the current language git-svn-id: http://piwigo.org/svn/trunk@9906 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -70,11 +70,16 @@ class language_controler {
|
||||
'url' => str_replace(array('=&','?&'),array('&','?'),
|
||||
add_url_params( $url_starting, array('lang'=> $code) )),
|
||||
'alt' => ucwords( $displayname ),
|
||||
'title' => substr($displayname, 0, -4), // remove [FR] or [RU]
|
||||
'img' => get_root_url().'language/' . $code . '/' . $code . '.jpg',
|
||||
);
|
||||
if ( $code !== $user['language'] )
|
||||
$lsw['flags'][$code] = $qlc ;
|
||||
else $lsw['Active'] = $qlc;
|
||||
|
||||
$lsw['flags'][$code] = $qlc ;
|
||||
|
||||
if ($code == $user['language'])
|
||||
{
|
||||
$lsw['Active'] = $qlc;
|
||||
}
|
||||
}
|
||||
$template->set_filename('language_flags', dirname(__FILE__) . '/flags.tpl');
|
||||
$lsw['side'] = ceil(sqrt(count($available_lang)));
|
||||
|
||||
Reference in New Issue
Block a user