Enter a type and click search.




Results for Magento\MediaGallery\Model\Directory\Config\Data

File: vendor/magento/module-media-gallery/etc/di.xml

<type name="Magento\MediaGallery\Model\Directory\ExcludedPatternsConfig">
    <arguments>
        <argument name="data" xsi:type="object">
            Magento\MediaGallery\Model\Directory\Config\Data
        </argument>
    </arguments>
</type>

This is a type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This configuration tells the Object Manager that when a user wants a Magento\MediaGallery\Model\Directory\ExcludedPatternsConfig object that the following arguments should be used in the foo object's constructor.

File: vendor/magento/module-media-gallery/etc/di.xml

<virtualType name="Magento\MediaGallery\Model\Directory\Config\Data"
             type="Magento\Framework\Config\Data">
    <arguments>
        <argument name="reader" xsi:type="object">
            Magento\MediaGallery\Model\Directory\Config\Reader
        </argument>
        <argument name="cacheId" xsi:type="string">
            Media_Gallery_Patterns_CacheId
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual Magento\MediaGallery\Model\Directory\Config\Data object that it should return a Magento\Framework\Config\Data object.

This configuration tells the Object Manager that when a user wants a Magento\MediaGallery\Model\Directory\Config\Data object that the following arguments should be used in the foo object's constructor.