Backend\Core\Language\Language::getLabels PHP Method

getLabels() public static method

Get all the labels from the language-file
public static getLabels ( ) : array
return array
    public static function getLabels()
    {
        return self::$lbl;
    }

Usage Example

Beispiel #1
0
 /**
  * Get all the labels from the language-file
  *
  * @deprecated
  *
  * @return array
  */
 public static function getLabels()
 {
     trigger_error('Backend\\Core\\Engine\\Language is deprecated.
          It has been moved to Backend\\Core\\Language\\Language', E_USER_DEPRECATED);
     return parent::getLabels();
 }
All Usage Examples Of Backend\Core\Language\Language::getLabels