2017 © Pedro Peláez
 

library drupalorg-api-php

PHP library for the Drupal.org API

image

opdavies/drupalorg-api-php

PHP library for the Drupal.org API

  • Tuesday, April 17, 2018
  • by opdavies
  • Repository
  • 1 Watchers
  • 1 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

PHP library for the Drupal.org API

This library provides convenient wrapper functions for Drupal.org’s REST API. The API is [documented here]0., (*1)

Examples

Nodes

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

Users

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

The Versions

17/04 2018

dev-master

9999999-dev

PHP library for the Drupal.org API

  Sources   Download

The Requires

 

The Development Requires

16/04 2018

0.2.0

0.2.0.0

PHP library for the Drupal.org API

  Sources   Download

The Requires

 

The Development Requires

04/03 2018

0.1.0

0.1.0.0

PHP library for the Drupal.org API

  Sources   Download

The Requires

 

The Development Requires