opdavies/drupalorg-api-php

此软件包最新版本(0.2.0)没有可用的许可证信息。

Drupal.org API 的 PHP 库

0.2.0 2018-04-16 13:34 UTC

This package is auto-updated.

Last update: 2024-09-25 17:43:55 UTC


README

此库为 Drupal.org 的 REST API 提供便捷的包装函数。API 文档在这里:文档链接

示例

节点

$nids = [107871, 2945793, 1306976];
$query = new NodeQuery();
$query->setOptions(['query' => ['type' => Node::TYPE_MODULE, 'nid' => $nids]]);
$nodes = $query->execute()->getContents()->all();

用户

$uids = [1, 381388];
$query = new UserQuery();
$query->setOptions(['query' => ['uid' => $uids]]);
$users = $query->execute()->getContents()->all();