2017 © Pedro Peláez
 

library knp-piwik-client

Simple client for Piwik (web analytics) API.

image

knplabs/knp-piwik-client

Simple client for Piwik (web analytics) API.

  • Friday, February 28, 2014
  • by Knplabs
  • Repository
  • 25 Watchers
  • 19 Stars
  • 8,753 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 10 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Not actively maintained

This project is not actively maintained by KnpLabs. Please contact us if you would like to take over., (*1)

PiwikClient

PHP 5.3 client for Piwik web analytics., (*2)

To see all available methods & their parameters, visit Piwik API Reference., (*3)

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:, (*4)

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

PiwikClient is released under the MIT License. See the bundled LICENSE file for details., (*5)

The Versions

28/02 2014

dev-master

9999999-dev http://github.com/KnpLabs/PiwikClient

Simple client for Piwik (web analytics) API.

  Sources   Download

MIT

The Requires

 

analytics knplabs piwik knp

12/11 2013

v1.0

1.0.0.0 http://github.com/KnpLabs/PiwikClient

Simple client for Piwik (web analytics) API.

  Sources   Download

MIT

The Requires

 

analytics knplabs piwik knp