Skip to content

Latest commit

 

History

History
101 lines (76 loc) · 3.3 KB

theme_language_switch.md

File metadata and controls

101 lines (76 loc) · 3.3 KB

Theme AddOn - Language Switcher

Benötigt das Theme Addon

Was macht es?

Eine kleine Funktion um die Sprachen im Frontend als stylebare Liste auszugeben.

Die Funktion

Lege eine Datei namens clang_switch.php im Theme Addon im Ordner theme/private/inc/frontend an.

Inhalt der Datei

<?php
/* ----- Language Switch -----
$showCurLang : true / false - if the current language shall be displayed
$wrappingList: true / false - adds wrapping ul with extra css if given
$countryCode : true / false - Shows Country Code as Name
$css_extra   : adds extra css classes
   ----- Language Switch ----- */

if(!function_exists("getLangNav"))
{
    function getLangNav($showCurLang = true, $wrappingList = true, $countryCode = true, $css_extra = '')
    {
        $langOutput = '';

        $langOutput  .= ($wrappingList ? '<ul class="lang--nav '.$css_extra.'">' : '');
        foreach(rex_clang::getAll() as $lang) {
            if(rex_clang::getCurrentId() == $lang->getId()) {
                if($showCurLang) {
                    $langOutput .= '<li class="lang--item lang--item__active lang--'.$lang->getCode().'">'.($countryCode ? $lang->getCode() : $lang->getName()).'</li>';
                }
            }
            else {
                if($lang->isOnline() && rex_article::getCurrent($lang->getId())->isOnline()) {
                    $langOutput .= '<li class="lang--item lang--item__inactive lang--'.$lang->getCode().'"><a title="'.$lang->getName().'" href="'.rex_getUrl('',$lang->getId()).'">'.($countryCode ? $lang->getCode() : $lang->getName()).'</a></li>';
                }
            }
        }
        $langOutput .= ($wrappingList ? '</ul>' : '');
        //return languagelist
        return $langOutput;
    }
}

Einbinden in Theme

Anschließend wird die Datei clang_switch.php in die functions.php im Ordner theme/private/incein.

z.B so:

<?php

if (!rex::isBackend()) {
    // Frontend 

    include('frontend/clang_switch.php');

} else {
    // Backend 

    //get REDAXO config file
    $configFile = rex_path::coreData('config.yml');
    $config = rex_file::getConfig($configFile);

    if (isset($config['debug']) && $config['debug'] === true) {
        // Optional Debug Module Function - Infos: https://github.com/FriendsOfREDAXO/tricks/blob/master/theme_debug_module.md
        //include('backend/debug_module.php');
    }
}

Ausgabe im Template

Jetzt kann die Ausgabe der Funktion an beliebiger Stelle im Template ausgegeben werden.

<?php

echo getLangNav(true, true, true, 'my--class');

Theme Debug Module

Eine kleine Funktion um die Inhalte der REX_VALUES auszugeben. Vor allem hilfreich beim Einsatz von mform und mblock. Zur Anleitung: Theme Debug Module