This overload will replace the topbar content message of the admin "Shop Online/Offline" page.
'; } /** * Overloaded "_addTopbarContent" method. * * This method will replace the content of the topbar element with a new one. * * @param ContentView $layoutView */ protected function _addTopbarContent(ContentView $layoutView) { $topbarContent = ''; if(gm_get_conf('TOPBAR_NOTIFICATION_MODE', 'ASSOC', true) === 'permanent' || (isset($_SESSION['hide_topbar']) && $_SESSION['hide_topbar'] !== true) || !isset($_SESSION['hide_topbar']) ) { /* @var TopbarContentView $view */ $view = MainFactory::create_object('TopbarContentView'); $topbarContent = $view->get_html(); } $topbarContent = preg_replace('/().*?(<\/span>)/', '$1Yout topbar content was replaced by the overload!$2', str_replace("\r\n", '', $topbarContent), 1); $layoutView->set_('topbar_content', $topbarContent); } }