Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExampleAPI.php « ExampleAPI « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe32fb9dc4a645815ffb5fdf271aff802f96e795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class Piwik_ExampleAPI extends Piwik_Plugin
{
	public function getInformation()
	{
		return array(
			'name' => 'Example API',
			'description' => 'Example Plugin: How to create an API for your plugin, to export your data in multiple formats without any special coding? Visit the <a href="index.php?module=API&action=listAllAPI#ExampleAPI">ExampleAPI example methods</a>.',
			'author' => 'Piwik',
			'homepage' => 'http://piwik.org/',
			'version' => '0.1',
		);
	}
}