| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/Order/Status/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/Order/Status/Edit.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Block\Adminhtml\Order\Status;
/**
* @api
* @since 100.0.2
*/
class Edit extends \Magento\Sales\Block\Adminhtml\Order\Status\NewStatus
{
/**
* Constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->_mode = 'edit';
$this->_blockGroup = 'Magento_Sales';
}
/**
* Retrieve text for header element depending on loaded page
*
* @return \Magento\Framework\Phrase
*/
public function getHeaderText()
{
return __('Edit Order Status');
}
}