• Модуль: mobileapp
  • Путь к файлу: ~/bitrix/modules/mobileapp/classes/general/interface.php
  • Класс: CAdminMobileDetailTmpl
  • Вызов: CAdminMobileDetailTmpl::getSectionHtml
static function getSectionHtml($arSection)
{
	$retHtml = '
' . $arSection["TITLE"] . '
'; if ($arSection["TYPE"] == "container") { $retHtml .= $arSection["HTML"]; } else { $retHtml .= '
'; if(is_array($arSection["ROWS"])) { foreach ($arSection["ROWS"] as $row) { $retHtml .= ' '; } } $retHtml .= '
' . $row["VALUE"] . '
'; if (isset($arSection["BOTTOM"]) && isset($arSection["BOTTOM"]["VALUE"])) { $retHtml .= '
'; } $retHtml .= '
'; } $retHtml .= '
'; return $retHtml; }