/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Model/Description/Mixin/HeaderMixin.php
36 строк
885 B
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2017 Adobe * All Rights Reserved. */ namespace Magento\Setup\Model\Description\Mixin; /** * Add header html tag to description */ class HeaderMixin implements DescriptionMixinInterface { /** * Add <h1> header with text before each new line (\r\n) * * @param string $text * @return string */ public function apply($text) { $paragraphs = explode(PHP_EOL, trim($text)); $magicLengthNumber = 10; foreach ($paragraphs as &$paragraph) { $rawText = trim(strip_tags($paragraph)); if (empty($rawText)) { continue; } $headerText = substr($rawText, 0, strpos($rawText, ' ', $magicLengthNumber)); $paragraph = '<h1>' . $headerText . '</h1>' . PHP_EOL . $paragraph; } return implode(PHP_EOL, $paragraphs); } }