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


PHP MediaInterface::getContentType方法代码示例

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


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

示例1: getMediaType

 /**
  * @param \Sonata\MediaBundle\Model\MediaInterface $media
  *
  * @return false|string
  */
 private function getMediaType(MediaInterface $media)
 {
     if ($media->getContentType() == 'video/x-flv') {
         return 'video';
     } elseif (substr($media->getContentType(), 0, 5) == 'image') {
         return 'image';
     }
     return false;
 }
开发者ID:saberyounis,项目名称:Sonata-Project,代码行数:14,代码来源:GalleryBlockService.php

示例2: 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);
 }
开发者ID:ingeniorweb,项目名称:symfo3cv,代码行数:26,代码来源:FileProvider.php

示例3: generateBinaryFromRequest

 /**
  * Set media binary content according to request content.
  *
  * @param MediaInterface $media
  */
 protected function generateBinaryFromRequest(MediaInterface $media)
 {
     if (php_sapi_name() === 'cli') {
         throw new \RuntimeException('The current process cannot be executed in cli environment');
     }
     if (!$media->getContentType()) {
         throw new \RuntimeException('You must provide the content type value for your media before setting the binary content');
     }
     $request = $media->getBinaryContent();
     if (!$request instanceof Request) {
         throw new \RuntimeException('Expected Request in binary content');
     }
     $content = $request->getContent();
     // create unique id for media reference
     $guesser = ExtensionGuesser::getInstance();
     $extension = $guesser->guess($media->getContentType());
     if (!$extension) {
         throw new \RuntimeException(sprintf('Unable to guess extension for content type %s', $media->getContentType()));
     }
     $handle = tmpfile();
     fwrite($handle, $content);
     $file = new ApiMediaFile($handle);
     $file->setExtension($extension);
     $file->setMimetype($media->getContentType());
     $media->setBinaryContent($file);
 }
开发者ID:kea,项目名称:SonataMediaBundle,代码行数:31,代码来源:FileProvider.php

示例4: 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);
 }
开发者ID:novatex,项目名称:SonataMediaBundle,代码行数:19,代码来源:FileProvider.php


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