• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/processor/task/scheduler/result/impact.php
  • Класс: Bitrix\Tasks\Processor\Task\Scheduler\Result\Impact
  • Вызов: Impact::dump
public function dump()
{
	$pristine = $this->getDataPristine();

	return
		'[' . $this->getId() . '] ' . $this->getFieldValueTitle() . ':' . PHP_EOL . "\t\t" . ' (' .
		$pristine['START_DATE_PLAN'] . ' => ' . $this->data['START_DATE_PLAN']
		. ' - '
		. $pristine['END_DATE_PLAN'] . ' => ' . $this->data['END_DATE_PLAN']
		. ') (' .
		UI::formatTimeAmount($pristine['DURATION_PLAN_SECONDS']) . ' (' . $pristine['DURATION_PLAN_SECONDS'] . ') => ' .
		UI::formatTimeAmount($this->calculateDuration()) . ' (' . $this->calculateDuration() . '))';
}