当前位置: 首页>>代码示例>>PHP>>正文


PHP I18n::translatef方法代码示例

本文整理汇总了PHP中I18n::translatef方法的典型用法代码示例。如果您正苦于以下问题:PHP I18n::translatef方法的具体用法?PHP I18n::translatef怎么用?PHP I18n::translatef使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在I18n的用法示例。


在下文中一共展示了I18n::translatef方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: title

 /**
  * @return string
  */
 public function title()
 {
     if ($this->isImage()) {
         return I18n::translatef('io/mimetype/image', strtoupper($this->type()));
     }
     return I18n::translatef('io/mimetype/file', strtoupper($this->type()));
 }
开发者ID:evalcodenet,项目名称:net.evalcode.components.io,代码行数:10,代码来源:mimetype.php

示例2: stashFile

 private function stashFile(Io_File $file_, $subPath_ = null)
 {
     $mimeType = $file_->getMimetype();
     if (null === $mimeType) {
         $this->addError(I18n::translatef('ui/panel/upload/file/error/unknown_mimetype', $file_->getName()));
         $file_->delete();
         return;
     }
     if (!$this->isValidMimetype($mimeType) || !$this->isValidFileExtension($file_->getExtension())) {
         $this->addError(I18n::translatef('ui/panel/upload/file/error/illegal_mimetype', $mimeType->title(), $file_->getName()));
         $file_->delete();
         return;
     }
     if ($this->extractArchives && $mimeType->isArchive()) {
         if (false === isset(self::$implArchives[$mimeType->name()])) {
             $this->addError(I18n::translatef('ui/panel/upload/file/error/unsupported_archive', $mimeType->name()));
             $file_->delete();
             return;
         }
         $archiveId = md5($file_->getPathAsString());
         $archiveImpl = self::$implArchives[$mimeType->name()];
         $archivePath = self::uploadPath($archiveId);
         // TODO Io_Archive_Zip
         $archive = new $archiveImpl();
         $archive->open($file_->getPathAsString());
         $archive->extractTo($archivePath);
         $this->scanTemporaryUploadPath(Io::path($archivePath), $subPath_);
         $archive->close();
         $file_->delete();
         return;
     }
     $file = $file_->move(self::uploadPath($subPath_)->getFile($file_->getName()));
     $this->m_files[$subPath_ . $file->getName()] = $file;
 }
开发者ID:evalcodenet,项目名称:net.evalcode.components.ui,代码行数:34,代码来源:file.php


注:本文中的I18n::translatef方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。