本文整理汇总了PHP中Sonata\MediaBundle\Model\MediaInterface::getMetadataValue方法的典型用法代码示例。如果您正苦于以下问题:PHP MediaInterface::getMetadataValue方法的具体用法?PHP MediaInterface::getMetadataValue怎么用?PHP MediaInterface::getMetadataValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sonata\MediaBundle\Model\MediaInterface
的用法示例。
在下文中一共展示了MediaInterface::getMetadataValue方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getReferenceImage
/**
* Replace 4/3 by 16/9 format
* Possible Formats :
* default
* mqdefault -> medium quality
* hqdefault -> high quality
* sddefault
* maxresdefault
*
* {@inheritdoc}
*/
public function getReferenceImage(MediaInterface $media)
{
$url = $media->getMetadataValue('thumbnail_url');
$pattern = '/\\bhqdefault\\b/i';
$sddefault_url = preg_replace($pattern, 'sddefault', $url);
//var_dump($sddefault_url);
//exit();
return $sddefault_url;
}
示例2: getReferenceImage
/**
* {@inheritdoc}
*/
public function getReferenceImage(MediaInterface $media)
{
return $media->getMetadataValue('thumbnail_url');
}
示例3: getDownloadResponse
/**
* {@inheritdoc}
*/
public function getDownloadResponse(MediaInterface $media, $format, $mode, array $headers = array())
{
// build the default headers
$headers = array_merge(array('Content-Type' => $media->getContentType(), 'Content-Disposition' => sprintf('attachment; filename="%s"', $media->getMetadataValue('filename'))), $headers);
if (!in_array($mode, array('http', 'X-Sendfile', 'X-Accel-Redirect'))) {
throw new \RuntimeException('Invalid mode provided');
}
if ($mode == 'http') {
if ($format == 'reference') {
$file = $this->getReferenceFile($media);
} else {
$file = $this->getFilesystem()->get($this->generatePrivateUrl($media, $format));
}
return new StreamedResponse(function () use($file) {
echo $file->getContent();
}, 200, $headers);
}
if (!$this->getFilesystem()->getAdapter() instanceof \Sonata\MediaBundle\Filesystem\Local) {
throw new \RuntimeException('Cannot use X-Sendfile or X-Accel-Redirect with non \\Sonata\\MediaBundle\\Filesystem\\Local');
}
$filename = sprintf('%s/%s', $this->getFilesystem()->getAdapter()->getDirectory(), $this->generatePrivateUrl($media, $format));
return new BinaryFileResponse($filename, 200, $headers);
}
示例4: getReferenceImage
/**
* {@inheritdoc}
*/
public function getReferenceImage(MediaInterface $media)
{
$content = $media->getMetadataValue('content');
return $content['poster'];
}
示例5: getDownloadResponse
/**
* {@inheritdoc}
*/
public function getDownloadResponse(MediaInterface $media, $format, $mode, array $headers = array())
{
// build the default headers
$headers = array_merge(array('Content-Type' => $media->getContentType(), 'Content-Disposition' => sprintf('attachment; filename="%s"', $media->getMetadataValue('filename'))), $headers);
if (!in_array($mode, array('http', 'X-Sendfile', 'X-Accel-Redirect'))) {
throw new \RuntimeException('Invalid mode provided');
}
if ($mode == 'http') {
$provider = $this;
return new StreamedResponse(function () use($provider, $media) {
echo $provider->getReferenceFile($media)->getContent();
}, 200, $headers);
}
$headers[$mode] = $this->generatePrivateUrl($media, $format);
return new Response('', 200, $headers);
}
示例6: generateReferenceSlug
protected function generateReferenceSlug(MediaInterface $media)
{
$filename = $media->getMetadataValue('filename');
$extension = substr($filename, strrpos($filename, '.') + 1);
return (new Slugify())->slugify(substr($filename, 0, strlen($filename) - strlen($extension)));
}
示例7: getDownloadResponse
/**
* {@inheritdoc}
*/
public function getDownloadResponse(MediaInterface $media, $format, $mode = null, array $headers = array())
{
$headers = array_merge(array('Content-Type' => $media->getContentType(), 'Content-Disposition' => sprintf('attachment; filename="%s"', $media->getMetadataValue('filename'))), $headers);
// create default variables
if ($mode == 'X-Sendfile') {
$headers['X-Sendfile'] = $this->generatePrivateUrl($media, $format);
$content = '';
} elseif ($mode == 'X-Accel-Redirect') {
$headers['X-Accel-Redirect'] = $this->generatePrivateUrl($media, $format);
$content = '';
} elseif ($mode == 'http') {
$content = $this->getReferenceFile($media)->getContent();
} else {
$content = '';
}
return new Response($content, 200, $headers);
}