當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Language::getErrors方法代碼示例

本文整理匯總了PHP中Backend\Core\Language\Language::getErrors方法的典型用法代碼示例。如果您正苦於以下問題:PHP Language::getErrors方法的具體用法?PHP Language::getErrors怎麽用?PHP Language::getErrors使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Backend\Core\Language\Language的用法示例。


在下文中一共展示了Language::getErrors方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getErrors

 /**
  * Get all the errors from the language-file
  *
  * @deprecated
  *
  * @return array
  */
 public static function getErrors()
 {
     trigger_error('Backend\\Core\\Engine\\Language is deprecated.
          It has been moved to Backend\\Core\\Language\\Language', E_USER_DEPRECATED);
     return parent::getErrors();
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:13,代碼來源:Language.php

示例2: parseLabels

 /**
  * Assign the labels
  */
 private function parseLabels()
 {
     // grab the current module
     $currentModule = BL::getCurrentModule();
     $errors = BL::getErrors();
     $labels = BL::getLabels();
     $messages = BL::getMessages();
     // set the begin state
     $realErrors = $errors['Core'];
     $realLabels = $labels['Core'];
     $realMessages = $messages['Core'];
     // loop all errors, label, messages and add them again, but prefixed with Core. So we can decide in the
     // template to use the Core-value instead of the one set by the module
     foreach ($errors['Core'] as $key => $value) {
         $realErrors['Core' . $key] = $value;
     }
     foreach ($labels['Core'] as $key => $value) {
         $realLabels['Core' . $key] = $value;
     }
     foreach ($messages['Core'] as $key => $value) {
         $realMessages['Core' . $key] = $value;
     }
     // are there errors for the current module?
     if (isset($errors[$currentModule])) {
         // loop the module-specific errors and reset them in the array with values we will use
         foreach ($errors[$currentModule] as $key => $value) {
             $realErrors[$key] = $value;
         }
     }
     // are there labels for the current module?
     if (isset($labels[$currentModule])) {
         // loop the module-specific labels and reset them in the array with values we will use
         foreach ($labels[$currentModule] as $key => $value) {
             $realLabels[$key] = $value;
         }
     }
     // are there messages for the current module?
     if (isset($messages[$currentModule])) {
         // loop the module-specific errors and reset them in the array with values we will use
         foreach ($messages[$currentModule] as $key => $value) {
             $realMessages[$key] = $value;
         }
     }
     // execute addslashes on the values for the locale, will be used in JS
     if ($this->addSlashes) {
         foreach ($realErrors as &$value) {
             $value = addslashes($value);
         }
         foreach ($realLabels as &$value) {
             $value = addslashes($value);
         }
         foreach ($realMessages as &$value) {
             $value = addslashes($value);
         }
     }
     // sort the arrays (just to make it look beautiful)
     ksort($realErrors);
     ksort($realLabels);
     ksort($realMessages);
     // assign errors
     $this->assignArray($realErrors, 'err');
     // assign labels
     $this->assignArray($realLabels, 'lbl');
     // assign messages
     $this->assignArray($realMessages, 'msg');
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:69,代碼來源:TwigTemplate.php


注:本文中的Backend\Core\Language\Language::getErrors方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。