本文整理匯總了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];
}
示例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;
}
示例3: bootTranslatable
public static function bootTranslatable()
{
static::deleted(function ($model) {
Translation::where('model', '=', get_class($model))->where('model_id', '=', $model->id)->delete();
});
}
示例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;
}