getData('media'); $view = $this->getData('view'); /** @var \Modules\Tag\Models\Tag[] $tag */ $tags = $media->getTags(); /** @var \Modules\Admin\Models\Account $account */ $account = $this->getData('account'); $accountDir = $account->getId() . ' ' . $account->login; $mediaPath = \urldecode($media->getVirtualPath() ?? '/'); /** @var \phpOMS\Message\Http\HttpRequest $this->request */ echo $this->getData('nav')->render(); ?>
| = $this->getHtml('Name'); ?> | = $this->printHtml($media->name); ?> |
| = $this->getHtml('Size'); ?> | size); echo $this->printHtml(\number_format($size[0], 1, '.', ',') . $size[1]); ?> |
| = $this->getHtml('Created'); ?> | = $this->printHtml($media->createdAt->format('Y-m-d')); ?> |
| = $this->getHtml('Creator'); ?> | = $this->printHtml( \ltrim($media->createdBy->name2 . ', ' . $media->createdBy->name1, ', ') ); ?> |
| = $this->getHtml('Tags'); ?> | = $tag->icon !== null ? '' : ''; ?>= $this->printHtml($tag->getL11n()); ?> |
| = $this->getHtml('Description'); ?> | |
| = $media->description; ?> | |