1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Dotdigitalgroup\Email\Block\Adminhtml\Config\Developer;
- class Reviewsync extends \Magento\Config\Block\System\Config\Form\Field
- {
- /**
- * @var string
- */
- public $buttonLabel = 'Run Now';
- /**
- * @param string $buttonLabel
- *
- * @return $this
- */
- public function setButtonLabel($buttonLabel)
- {
- $this->buttonLabel = $buttonLabel;
- return $this;
- }
- /**
- * Get the button and scripts contents.
- *
- * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
- *
- * @return string
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function _getElementHtml(\Magento\Framework\Data\Form\Element\AbstractElement $element)
- {
- $url = $this->_urlBuilder->getUrl('dotdigitalgroup_email/run/reviewsync');
- return $this->getLayout()
- ->createBlock(\Magento\Backend\Block\Widget\Button::class)
- ->setType('button')
- ->setLabel($this->buttonLabel)
- ->setOnClick("window.location.href='" . $url . "'")
- ->toHtml();
- }
- }
|