• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/controller/session/groupactions.php
  • Класс: BitrixImOpenLinesControllerSessionGroupActions
  • Вызов: GroupActions::getValidIds
protected function getValidIds($ids): array
{
	$result = [];

	if(
		!empty($ids) &&
		is_array($ids)
	)
	{
		foreach ($ids as $key=>$id)
		{
			$id = (int)$id;

			if(
				!empty($id) &&
				$id > 0
			)
			{
				$result[$key] = $id;
			}
		}
	}

	return $result;
}