Sulu\Component\Content\Export\ContentExportManagerInterface::hasExport PHP Method

hasExport() public method

Checks the content-type if this has an export.
public hasExport ( $contentTypeName, $format ) : boolean
$contentTypeName
$format
return boolean
    public function hasExport($contentTypeName, $format);

Usage Example

Example #1
0
 /**
  * {@inheritdoc}
  */
 public function export($properties, $format = null)
 {
     $container = new ExcerptValueContainer($properties);
     $data = [];
     foreach ($this->getExcerptStructure()->getProperties() as $property) {
         if ($container->__isset($property->getName())) {
             $property->setValue($container->__get($property->getName()));
             $contentType = $this->contentTypeManager->get($property->getContentTypeName());
             if ($this->contentExportManager->hasExport($property->getContentTypeName(), $format)) {
                 $options = $this->contentExportManager->getOptions($property->getContentTypeName(), $format);
                 $data[$property->getName()] = ['name' => $property->getName(), 'value' => $contentType->exportData($property->getValue()), 'type' => $property->getContentTypeName(), 'options' => $options];
             }
         }
     }
     return $data;
 }
All Usage Examples Of Sulu\Component\Content\Export\ContentExportManagerInterface::hasExport
ContentExportManagerInterface