Xpressengine\Plugin\PluginProvider::findAll PHP Method

findAll() public method

자료실에서 주어진 아이디들의 자료를 조회한다
public findAll ( array $ids ) : array
$ids array list of plugin id
return array
    public function findAll(array $ids)
    {
        $url = 'list';
        $queries = ['name' => implode(',', $ids)];
        try {
            $response = $this->request($url, $queries);
        } catch (ClientException $e) {
            if ($e->getCode() === Response::HTTP_NOT_FOUND) {
                return [];
            }
            throw $e;
        }
        return $response;
    }