123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Signifyd\Block\Adminhtml\System\Config\Field;
- use Magento\Framework\Data\Form\Element\AbstractElement;
- use Magento\Config\Block\System\Config\Form\Field;
- use Magento\Store\Model\ScopeInterface;
- use Magento\Store\Model\Store;
- /**
- * Input field transformed to text node with link to store Signifyd webhooks controller.
- */
- class WebhookUrl extends Field
- {
- /**
- * @inheritdoc
- */
- protected function _getElementHtml(AbstractElement $element)
- {
- $url = '';
- $originalData = $element->getOriginalData();
- if (!empty($originalData['handler_url'])) {
- $url = $this->getStoreUrl();
- $url .= $originalData['handler_url'];
- }
- return '<p class="webhook-url">' . $this->escapeHtml($url) . '</p>';
- }
- /**
- * @inheritdoc
- */
- protected function _isInheritCheckboxRequired(AbstractElement $element)
- {
- return false;
- }
- /**
- * Return base store URL.
- *
- * @return string
- */
- private function getStoreUrl()
- {
- $website = $this->_storeManager->getWebsite($this->getRequest()->getParam('website'));
- $isSecure = $this->_scopeConfig->isSetFlag(
- Store::XML_PATH_SECURE_IN_FRONTEND,
- ScopeInterface::SCOPE_WEBSITE,
- $website->getCode()
- );
- $configPath = $isSecure ? Store::XML_PATH_SECURE_BASE_LINK_URL : Store::XML_PATH_UNSECURE_BASE_LINK_URL;
- return $this->_scopeConfig->getValue($configPath, ScopeInterface::SCOPE_WEBSITE, $website->getCode());
- }
- }
|