should::indexItemSets

  1. Bitrix24 API (v. 23.675.0)
  2. tasks
  3. should
  4. indexItemSets
  • Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/manager.php
  • Класс: BitrixTasksshould
  • Вызов: should::indexItemSets
static function indexItemSets(array $set)
{
	$indexed = array();
	$i = 0;
	foreach($set as $item)
	{
		if (!is_array($item))
		{
			continue;
		}

		$pIndex = static::extractPrimaryIndex($item);
		if((string) $pIndex == '' || $pIndex == '0')
		{
			$pIndex = 'n'.($i++);
		}

		$indexed[$pIndex] = $item;
	}

	return $indexed;
}

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