• Модуль: mobileapp
  • Путь к файлу: ~/bitrix/modules/mobileapp/lib/janative/entity/config.php
  • Класс: BitrixMobileAppJanativeEntityConfig
  • Вызов: Config::__construct
public function __construct($path)
{
	$this->path = Path::normalize($path);
	$file = new File($this->path);
	if ($file->isExists())
	{
		$content = include($this->path);

		if (is_array($content))
		{
			$this->config = $content;
		}
	}
}