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


PHP Translation::where方法代碼示例

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


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

示例1: get

 public function get($locale)
 {
     if (!array_key_exists($locale, $this->translations)) {
         $this->translations[$locale] = Translation::where('group_id', $this->group_id)->where('locale', $locale)->first();
     }
     return $this->translations[$locale];
 }
開發者ID:igaster,項目名稱:laravel-translate-eloquent,代碼行數:7,代碼來源:Translations.php

示例2: getTranslation

 public static function getTranslation($i18n_id, $locale_id = null)
 {
     $locale_id = $locale_id === null ? App::getLocale() : $locale_id;
     $cachePrefix = 'Eloquentizr::getTranslation:' . $locale_id . ':';
     if (Cache::has($cachePrefix . $i18n_id)) {
         return Cache::get($cachePrefix . $i18n_id);
     }
     $translation = Translation::where('i18n_id', '=', $i18n_id)->where('locale_id', '=', $locale_id)->first();
     if (empty($translation)) {
         $text = null;
     } else {
         $text = $translation->text;
     }
     Cache::put($cachePrefix . $i18n_id, $text, 60);
     return $text;
 }
開發者ID:Metrakit,項目名稱:dynamix,代碼行數:16,代碼來源:Eloquentizr.php

示例3: bootTranslatable

 public static function bootTranslatable()
 {
     static::deleted(function ($model) {
         Translation::where('model', '=', get_class($model))->where('model_id', '=', $model->id)->delete();
     });
 }
開發者ID:escapework,項目名稱:laravel-translations,代碼行數:6,代碼來源:Translatable.php

示例4: translate

 /**
  * Additional Method
  *
  * @var string
  */
 public function translate($i18n_id)
 {
     return Translation::where('i18n_id', '=', $i18n_id)->where('locale_id', '=', App::getLocale())->first()->text;
 }
開發者ID:Metrakit,項目名稱:dynamix,代碼行數:9,代碼來源:InputView.php


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