setLang method

setLang set language value, this method used only with getLang method.

Basic Usage

The basic usage for setLang method.

setLang(string $language_codename): $this

Parameters

setLang method has 1 required parameter.

$language_codename

The language codename value, like en-US, en-DE, etc.

Example Usage

Here is the full example of setLang method.

<?php
class Blog extends SENE_Controller {
  public function __construct(){
    parent::__construct();
  }
  public function index(){
    ...
    $this->setLang('en-US');
    ...
  }
}