12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Dotdigitalgroup\Email\Block\Adminhtml;
- /**
- * Dashboard block
- *
- * @api
- */
- class Dashboard extends \Magento\Backend\Block\Widget\Container
- {
- /**
- * @var string
- */
- public $_template = 'dashboard/main.phtml';
- /**
- * Dashboard constructor
- *
- * @return void
- */
- public function _construct()
- {
- $this->_controller = 'adminhtml_dashboard';
- $this->_headerText = __('Dashboard');
- parent::_construct();
- /**
- * Contact sync.
- */
- $this->buttonList->add(
- 'contact_sync',
- [
- 'label' => __('Run Contact Sync'),
- 'class' => 'primary'
- ]
- );
- /**
- * Importer sync.
- */
- $this->buttonList->add(
- 'importer_sync',
- [
- 'label' => __('Run Importer Sync'),
- 'class' => 'primary'
- ]
- );
- }
- /**
- * @return string
- */
- public function getContactSyncLink()
- {
- return $this->getUrl('dotdigitalgroup_email/run/contactsync');
- }
- /**
- * @return string
- */
- public function getImporterLink()
- {
- return $this->getUrl('dotdigitalgroup_email/run/importersync');
- }
- }
|