Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Official PHP SDK for the Content Delivery API

License

Notifications You must be signed in to change notification settings

vimeda/contentful.php

 
 

Repository files navigation

contentful.php

Build Status

PHP SDK for Contentful's Content Delivery API.

Contentful is a content management platform for web applications, mobile apps and connected devices. It allows you to create, edit & manage content in the cloud and publish it anywhere via powerful API. Contentful offers tools for managing editorial teams and enabling cooperation between organizations.

The SDK requires at least PHP 5.5.9. PHP 7 is supported.

The SDK is currently in beta. The API might change at any time.

Setup

To add this package to your composer.json and install it execute the following command:

php composer.phar require contentful/contentful:@beta

Then, if not already done, include the Composer autoloader:

require_once 'vendor/autoload.php';

Usage

All interactions with the SDK go trough Contentful\Delivery\Client. To create a new client an access token and a space ID have to be passed to the constructor.

$client = new \Contentful\Delivery\Client('access-token', 'space-id');

To fetch an Entry just call the method getEntry() with the ID of the desired entry.

$entry = $client->getEntry('entry-id');

The fields of an entry can than be accessed through getter methods.

$entry->getId(); // 'entry-id'

More than one Entry can be fetched by calling getEntries(). This methods requires a Contentful\Delivery\Query object, which allows filtering and sorting results.

$query = new \Contentful\Delivery\Query;
$query->where('sys.updatedAt', new \DateTime('2013-01-01'));
$entries = $client->getEntries($query);

Default Ordering

Bear in mind that there is no default ordering included for any method which returns a Contentful\ResourceArray instance. This means that if you plan to page through more than 100 results with multiple requests, there is no guarantee that you will cover all entries. It is however possible to specify custom ordering:

$query = new \Contentful\Delivery\Query;
$query->orderBy('sys.createdAt', true);
$entries = $client->getEntries($query);

The above snippet will fetch all Entries, ordered by newest-to-oldest.

Preview Mode

The Content Delivery API only returns published Entries. However, you might want to preview content in your app before making it public for your users. For this, you can use the preview mode, which will return all Entries, regardless of their published status. To do so, just pass true as the third argument to the Client constructor.

$client = new \Contentful\Delivery\Client('access-token', 'space-id', true);

Apart from the configuration option, you can use the SDK without modifications with one exception: you need to obtain a preview access token, which you can get in the "API" tab of the Contentful app. In preview mode, data can be invalid, because no validation is performed on unpublished entries. Your app needs to deal with that. Be aware that the access token is read-write and should in no case be shipped with a production app.

Documentation

License

Copyright (c) 2015-2016 Contentful GmbH. Code released under the MIT license. See LICENSE for further details.

About

Official PHP SDK for the Content Delivery API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%