CBP::getResourceFilePath

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBP
  4. getResourceFilePath
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/runtime.php
  • Класс: CBP
  • Вызов: CBP::getResourceFilePath
public function getResourceFilePath($activityPath, $filePath)
{
	$path = str_replace("\", "/", $activityPath);
	$path = mb_substr($path, 0, mb_strrpos($path, "/") + 1);

	$filePath = str_replace("\", "/", $filePath);
	$filePath = ltrim($filePath, "/");

	if (file_exists($path.$filePath) && is_file($path.$filePath))
		return array($path.$filePath, $path);
	else
		return null;
}

Добавить комментарий