-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSignup.php
More file actions
37 lines (31 loc) · 743 Bytes
/
Signup.php
File metadata and controls
37 lines (31 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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$
*
* @category Piwik_Plugins
* @package Piwik_Signup
*/
class Piwik_Signup extends Piwik_Plugin
{
public static $enableCaptcha = null;
public function getInformation()
{
$info = array(
'name' => 'Signup',
'description' => 'Allows users to signup for a piwik account',
'author' => 'Stephan Miller',
'author_homepage' => 'http://www.stephanmiller.com/',
'version' => '0.2',
'translationAvailable' => true,
);
return $info;
}
public function __construct()
{
self::$enableCaptcha = Zend_Registry::get('config')->Signup->enable_captcha;
}
}