Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Assign.php
Go to the documentation of this file.
1 <?php
7 
12 class Assign extends \Magento\Backend\Block\Widget\Form\Container
13 {
19  protected function _construct()
20  {
21  $this->_controller = 'adminhtml_order_status';
22  $this->_mode = 'assign';
23  $this->_blockGroup = 'Magento_Sales';
24  parent::_construct();
25  $this->buttonList->update('save', 'label', __('Save Status Assignment'));
26  $this->buttonList->remove('delete');
27  }
28 
34  public function getHeaderText()
35  {
36  return __('Assign Order Status to State');
37  }
38 }
__()
Definition: __.php:13