本文整理汇总了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()));
}
示例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;
}