Get support for KnpLabs/KnpPiwikBundle
If you're new to LTH, please see our FAQ for more information on what it is we do.
Support Options
Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:
View Open IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck out the page and see if there are any options to sponsor this project or it's developers directly.
KnpLabs/KnpPiwikBundle
Not actively maintained
This project is not actively maintained by KnpLabs. Please contact us if you would like to take over.
Provides support for Piwik API into your Symfony2 projects.
Installation
Add Knp\PiwikClient to vendors
git submodule add git://github.com/KnpLabs/KnpPiwikClient.git vendor/PiwikClient
Specify Knp\PiwikClient in autoload.php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'Knp\PiwikClient' => __DIR__.'/../vendor/PiwikClient/src',
// ...
));
Add Knp\PiwikBundle to your src/Bundle dir
git submodule add git://github.com/KnpLabs/PiwikBundle.git vendor/bundles/Knp/Bundle/PiwikBundle
Add KnpPiwikBundle to your application kernel
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Knp\Bundle\PiwikBundle\KnpPiwikBundle(),
// ...
);
}
Configuration
HTTP client (Piwik on remote server)
# app/config/config.yml
knp_piwik:
connection: piwik.connection.http
url: http://piwik.example.com
token: PIWIK_API_TOKEN
Don't forget to add Buzz library for HTTP requests into vendors:
git submodule add https://github.com/kriswallsmith/Buzz.git src/vendor/Buzz
And to autoload.php:
// src/autoload.php
$loader->registerNamespaces(array(
// ...
'Buzz' => $vendorDir.'/Buzz/lib',
// ...
));
Local PHP client (Piwik on local server)
# app/config/config_dev.yml
knp_piwik:
connection: piwik.connection.piwik
token: PIWIK_API_TOKEN
You need to require Piwik library in autoload.php:
// src/autoload.php
// ...
define('PIWIK_ENABLE_DISPATCH', false);
define('PIWIK_ENABLE_ERROR_HANDLER', false);
define('PIWIK_ENABLE_SESSION_START', false);
require_once PIWIK_INCLUDE_PATH . "/index.php";
require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
Piwik_FrontController::getInstance()->init();
Testing
There is another connection, called stub. It's used for testing:
# app/config/config_test.yml
knp_piwik:
connection: piwik.connection.stub
Usage
In your controllers:
$dataArray = $this->get('piwik.client')->
call('API.getReportMetadata', array('idSites' => array(2, 3)));
Everywhere:
$dataArray = $container->get('piwik.client')->
call('API.getReportMetadata', array('idSites' => array(2, 3)));
Api Calls
To see all available methods & their parameters, visit Piwik API Reference.
Copyright
PiwikClient Copyright (c) 2011 KnpLabs http://KnpLabs.com. See LICENSE for details.
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2