9684452d40
+YUCHENG HU+ git-svn-id: https://svn.code.sf.net/p/hawebs/svn@482 a2543c7e-f6e9-4f8a-8bff-1ffc34733512
30 lines
664 B
PHP
30 lines
664 B
PHP
<?php
|
|
/**
|
|
* Piwik - Open source web analytics
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
|
|
* @version $Id: API.php 2264 2010-06-03 16:53:43Z vipsoft $
|
|
*
|
|
* @category Piwik_Plugins
|
|
* @package Piwik_API
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package Piwik_API
|
|
*/
|
|
class Piwik_API extends Piwik_Plugin
|
|
{
|
|
public function getInformation()
|
|
{
|
|
return array(
|
|
'description' => Piwik_Translate('API_PluginDescription'),
|
|
'homepage' => 'misc/redirectToUrl.php?url=http://dev.piwik.org/trac/wiki/API/Reference',
|
|
'author' => 'Piwik',
|
|
'author_homepage' => 'http://piwik.org/',
|
|
'version' => Piwik_Version::VERSION,
|
|
);
|
|
}
|
|
}
|