Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Header.php
Go to the documentation of this file.
1 <?php
8 
16 {
22  protected $_template = 'Magento_Theme::html/header.phtml';
23 
29  public function getWelcome()
30  {
31  if (empty($this->_data['welcome'])) {
32  $this->_data['welcome'] = $this->_scopeConfig->getValue(
33  'design/header/welcome',
34  \Magento\Store\Model\ScopeInterface::SCOPE_STORE
35  );
36  }
37  return __($this->_data['welcome']);
38  }
39 }
__()
Definition: __.php:13