Integration.php 709 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Integration\Block\Adminhtml;
  7. /**
  8. * Integration block.
  9. *
  10. * @api
  11. * @codeCoverageIgnore
  12. * @since 100.0.2
  13. */
  14. class Integration extends \Magento\Backend\Block\Widget\Grid\Container
  15. {
  16. /**
  17. * Define actions available on the integrations grid page.
  18. *
  19. * @return void
  20. */
  21. protected function _construct()
  22. {
  23. $this->_controller = 'adminhtml_integration';
  24. $this->_blockGroup = 'Magento_Integration';
  25. $this->_headerText = __('Integrations');
  26. $this->_addButtonLabel = __('Add New Integration');
  27. parent::_construct();
  28. }
  29. }