1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
langtemplate.php
См. документацию.
1<?php
2
3namespace Bitrix\Main\Cli\Command\Make\Templates\Component;
4
5use Bitrix\Main\Cli\Helper\Renderer\Template;
6
7final class LangTemplate implements Template
8{
9 public function __construct(
10 private readonly string $componentTitlePhrase,
11 private readonly string $componentTitle,
12 )
13 {}
14
15 public function getContent(): string
16 {
17 return <<<PHP
18<?php
19
20\$MESS["{$this->componentTitlePhrase}"] = "{$this->componentTitle}";
21
22PHP;
23 }
24}
__construct(private readonly string $componentTitlePhrase, private readonly string $componentTitle,)
Определения langtemplate.php:9