• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/Controller/Giphy.php
  • Класс: BitrixImBotControllerGiphy
  • Вызов: Giphy::listPopularAction
public function listPopularAction(): ?array
{
	$result = $this->sender->getPopular();

	if (!$result->isSuccess())
	{
		$this->addErrors($result->getErrors());

		return null;
	}

	return $result->getData();
}