• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/classes/general/html_editor.php
  • Класс: CHTMLEditor
  • Вызов: CHTMLEditor::BuildSceleton
function BuildSceleton($display = true)
{
	$width = isset($this->jsConfig['width']) && intval($this->jsConfig['width']) > 0 ? $this->jsConfig['width'] : "100%";
	$height = isset($this->jsConfig['height']) && intval($this->jsConfig['height']) > 0 ? $this->jsConfig['height'] : "100%";

	$widthUnit = mb_strpos($width, "%") === false ? "px" : "%";
	$heightUnit = mb_strpos($height, "%") === false ? "px" : "%";
	$width = intval($width);
	$height = intval($height);

	?>