• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/item/field/scalar.php
  • Класс: BitrixTasksItemFieldScalar
  • Вызов: Scalar::setSource
public function setSource($source)
{
	$this->source = static::SOURCE_TABLET;
	if($source)
	{
		$this->source = Assert::expectEnumerationMember($source, array(
			static::SOURCE_TABLET,
			static::SOURCE_UF,
			static::SOURCE_CUSTOM,
		));
	}
}