All Projects → KnpLabs → PiwikClient

KnpLabs / PiwikClient

Licence: MIT license
[UNMAINTAINED] Simple Piwik API client, written in PHP 5.3

Programming Languages

PHP
23972 projects - #3 most used programming language

Not actively maintained

This project is not actively maintained by KnpLabs. Please contact us if you would like to take over.

PiwikClient

PHP 5.3 client for Piwik web analytics.

To see all available methods & their parameters, visit Piwik API Reference.

Usage

Through HTTP connection

use Knp\PiwikClient\Connection\HttpConnection;
use Knp\PiwikClient\Client;

// Instantiate piwik client
$connection = new HttpConnection('http://demo.piwik.org');
$client = new Client($connection, 'YOUR_API_TOKEN');

// Call piwik API
$array = $client->call('PLUGIN.METHOD', $parameters);

Through local (PHP) connection

use Knp\PiwikClient\Connection\PiwikConnection;
use Knp\PiwikClient\Client;

// Instantiate piwik
require_once PIWIK_INCLUDE_PATH . "/index.php";
require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
Piwik_FrontController::getInstance()->init();

// Instantiate piwik client
$connection = new PiwikConnection();
$client = new Client($connection, 'YOUR_API_TOKEN');

// Call piwik API
$array = $client->call('PLUGIN.METHOD', $parameters);

Installation

This library can be installed using composer by adding the following in the require section of your composer.json file:

"require": {
    ...
    "knplabs/knp-piwik-client": "1.*"
},

Copyright

PiwikClient is released under the MIT License. See the bundled LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].