could::getStartDatePlan

  1. Bitrix24 API (v. 23.675.0)
  2. tasks
  3. could
  4. getStartDatePlan
  • Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/processor/task/scheduler/result/impact.php
  • Класс: BitrixTasksProcessorTaskSchedulerResultcould
  • Вызов: could::getStartDatePlan
public function getStartDatePlan($getCreatedDateOnNull = false)
{
	$date = $this->getStartDateOrCreatedDate($getCreatedDateOnNull);

	if(is_string($date) && !empty($date))
	{
		// $date contains user localtime
		return DateTime::createFromUserTime($date);
	}
	elseif($date instanceof DateTime)
	{
		return clone $date;
	}
	else
	{
		return null;
	}
}

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