本文整理匯總了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;
}