How do the Magento_Bundle module's classes implement the modifyMeta() method of the \Magento\Ui\DataProvider\Modifier\ModifierInterface interface?

Preliminary reading: How does \Magento\Ui\DataProvider\Modifier\ModifierInterface::modifyMeta()work?


https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleCustomOptions.php#L20-L42


https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePanel.php#L57-L163


https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php#L50-L134



https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleSku.php#L37-L71


https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundleWeight.php#L38-L114


https://github.com/magento/magento2/blob/e0ed4bad/app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/Composite.php#L72-L87

See also: