12345678910111213141516171819202122 |
- <?php
- namespace Dotdigitalgroup\Email\Block;
- class Edc extends \Magento\Framework\View\Element\Template
- {
- /**
- * @param null|string|bool|int|\Magento\Store\Api\Data\StoreInterface $store
- *
- * @return string|boolean
- */
- public function getTextForUrl($store)
- {
- /** @var \Magento\Store\Model\Store $store */
- $store = $this->_storeManager->getStore($store);
- return $store->getConfig(
- \Dotdigitalgroup\Email\Helper\Config::XML_PATH_CONNECTOR_DYNAMIC_CONTENT_LINK_TEXT
- );
- }
- }
|