PHP code example of integready / yii2-localeurls

1. Go to this page and download the library: Download integready/yii2-localeurls library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

integready / yii2-localeurls example snippets



return [

    // ...

    'components' => [
        // ...

        // Override the urlManager component
        'urlManager' => [
            'class' => 'codemix\localeurls\UrlManager',

            // List all supported languages here
            // Make sure, you 

 $url = Url::to(['demo/action']) 

<?= $url = Url::to(['demo/action', 'language'=>'fr']) 

<?= Url::to(['demo/action', 'language'=>'de']) 

<?= Url::to(['demo/action', 'language'=>'fr']) 

'languages' => [
  'en',
  'at' => 'de-AT',
  'de',
  'pt-*'
],


    'ignoreLanguageUrlPatterns' => [
        '#^site/(login|register)#' => '#^(login|register)#'
        '#^api/#' => '#^api/#',
    ],