Файл: concrete5.7.5.6/concrete/src/Application/Service/UserInterface/Help/CoreManager.php
Строк: 31
<?php
namespace ConcreteCoreApplicationServiceUserInterfaceHelp;
class CoreManager implements ManagerInterface
{
public function getMessage($identifier)
{
switch($identifier) {
case 'toolbar':
$m = new Message();
$m->setMessageContent(t('Use the editing toolbar at the top of the page to put your page in edit mode, add content to the page, change page settings, and navigate your site.'));
$m->setIdentifier('toolbar');
$m->addGuide('toolbar');
break;
}
return (isset($m)) ? $m : null;
}
public function getFormatter(Message $message)
{
return new Formatter();
}
}