mp-php/fuel-packages-gdata

Installs: 1 076

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 1

Forks: 1

Open Issues: 0

Type:fuel-package

1.0 2014-02-19 13:05 UTC

This package is auto-updated.

Last update: 2024-04-19 19:28:41 UTC


README

This package depend on google-api-php-client.
https://github.com/google/google-api-php-client

Install

Setup to fuel/packages/gdata

Configuration

One

In app/config/config.php

'always_load' => array('packages' => array(
	'gdata',
	...

or in your code

Package::load('gdata');
Two

Copy packages/gdata/config/gdata.php to under app/config directory and edit

Usage

$gdata = Gdata::forge(
	$service_name,
	$instance_name = 'default',
	$config = array()
);
You can access $gdata->client and $gdata->service.