Dailydeal.php 474 B

12345678910111213141516171819
  1. <?php
  2. namespace Smartwave\Dailydeals\Block\Adminhtml;
  3. class Dailydeal extends \Magento\Backend\Block\Widget\Grid\Container
  4. {
  5. /**
  6. * constructor
  7. *
  8. * @return void
  9. */
  10. protected function _construct()
  11. {
  12. $this->_controller = 'adminhtml_dailydeal';
  13. $this->_blockGroup = 'Sw_Dailydeals';
  14. $this->_headerText = __('Dailydeals');
  15. $this->_addButtonLabel = __('Create New Dailydeal');
  16. parent::_construct();
  17. }
  18. }