vendor/elements/demi-bundle/src/Elements/Demi/Model/Infrastructure.php line 42

Open in your IDE?
  1. <?php
  2. /**
  3.  * Elements DeMI
  4.  *
  5.  * This source file is available under the elements DeMI license version 1
  6.  *
  7.  *  @copyright  Copyright (c) elements.at New Media Solutions GmbH (https://www.elements.at/)
  8.  *  @license    elements DeMI Lizenz Version 1 (https://www.elements.at/de/demi-lizenz)
  9.  */
  10. namespace Elements\Demi\Model;
  11. use DateTime;
  12. use Elements\Demi\Deskline\Constant\AddressInterface;
  13. use Elements\Demi\Deskline\Constant\DescriptionInterface;
  14. use Elements\Demi\Deskline\Constant\DocumentInterface;
  15. use Pimcore\Model\Asset;
  16. use Pimcore\Model\Asset\Image;
  17. use Pimcore\Model\DataObject\DemiDocumentImage;
  18. use Pimcore\Model\DataObject\DemiInfrastructure;
  19. use Pimcore\Model\DataObject\Fieldcollection\Data\DemiAddress;
  20. /**
  21.  * @method demiGetDocuments(DateTime $filterDate = null)
  22.  * @method demiGetDescriptions(DateTime $filterDate = null)
  23.  * @method string getDescription(array $type = null, string $language = null, DateTime $filterDate = null)
  24.  * @method DemiAddress getAddress(array $types = null)
  25.  * @method Image getFirstImage(array $types = null, DateTime $filterDate = null)
  26.  * @method Image[] getImages(array $types = null, DateTime $filterDate = null)
  27.  * @method DemiDocumentImage[] getImageDocuments(array $types = null, DateTime $filterDate = null)
  28.  * @method Asset[] getGeneralDocuments(array $types = null, DateTime $filterDate = null)
  29.  * @method Asset[] getGeneralDocumentsAsDocuments(array $types = null, DateTime $filterDate = null)
  30.  * @method string getShortDescription(string $language = null, DateTime $filterDate = null)
  31.  * @method string getLongDescription(string $language = null, DateTime $filterDate = null)
  32.  * @method string getOpeningTimesDescription(string $language = null, DateTime $filterDate = null)
  33.  * @method string getPriceInfoDescription(string $language = null, DateTime $filterDate = null)
  34.  * @method updateFullTextSearch()
  35.  * @method string getUrl($viewOrOptions = null, $path = null, $route = null, $relativeToDocument = false)
  36.  * @method createDetailPath($view)
  37.  */
  38. class Infrastructure extends DemiInfrastructure implements AddressInterfaceDescriptionInterfaceDocumentInterface
  39. {
  40. }