Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4398 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Form\Auth;
6
 
7
use Laminas\Form\Form;
8
use LeadersLinked\Model\UserType;
9
 
10
class SignupForm extends Form
11
{
12
    /**
13
     *
14
     * @param array $config
15
     */
16
    public function __construct($config)
17
    {
18
 
19
        parent::__construct();
20
        $this->setInputFilter(new SignupFilter());
21
 
22
        $this->add([
23
            'name' => 'first_name',
24
            'type' => \Laminas\Form\Element\Text::class,
25
             'attributes' => [
26
                'maxlength' 	=> 64,
27
                'id' 			=> 'first_name',
28
            ]
29
         ]);
30
         $this->add([
31
            'name' => 'last_name',
32
            'type' => \Laminas\Form\Element\Text::class,
33
            'attributes' => [
34
                'maxlength' 	=> 64,
35
                'id' 			=> 'last_name',
36
            ]
37
        ]);
38
         $this->add([
39
            'name' => 'email',
40
            'type' => \Laminas\Form\Element\Text::class,
41
            'attributes' => [
42
                'maxlength' 	=> 64,
43
                'id' 			=> 'email',
44
            ]
45
        ]);
46
         $this->add([
47
             'name' => 'password',
48
             'type' => \Laminas\Form\Element\Text::class,
49
             'attributes' => [
50
                 'maxlength' 	=> 16,
51
                 'id' 			=> 'password',
52
             ]
53
         ]);
54
         $this->add([
55
             'name' => 'confirmation',
56
             'type' => \Laminas\Form\Element\Text::class,
57
             'attributes' => [
58
                 'maxlength' 	=> 16,
59
                 'id' 			=> 'confirmation',
60
             ]
61
         ]);
62
 
63
        $this->add([
64
            'name' => 'terms_and_conditions',
65
            'type' => \Laminas\Form\Element\Checkbox::class,
66
            'attributes' => [
67
                'id' => 'terms_and_conditions',
68
            ],
69
            'options' => [
70
                'use_hidden_element' => false,
71
                'unchecked_value' => 0,
72
                'checked_value' => 1,
73
            ]
74
        ]);
75
 
76
        if($config['leaderslinked.runmode.sandbox']) {
77
            $site_key      = $config['leaderslinked.google_captcha.sandbox_site_key'];
78
            $secret_key    = $config['leaderslinked.google_captcha.sandbox_secret_key'];
79
        } else {
80
            $site_key      = $config['leaderslinked.google_captcha.production_site_key'];
81
            $secret_key    = $config['leaderslinked.google_captcha.production_secret_key'];
82
        }
83
 
84
        $curl = new \Laminas\Http\Client\Adapter\Curl();
85
        $curl = $curl->setCurlOption(CURLOPT_SSL_VERIFYHOST,false);
86
        $curl = $curl->setCurlOption(CURLOPT_SSL_VERIFYPEER,false);
87
 
88
        $httpClient = new \Laminas\Http\Client();
89
        $httpClient->setAdapter($curl);
90
 
91
 
92
        $captcha = new \Laminas\Captcha\ReCaptcha();
93
        $captcha->setService(new \Laminas\ReCaptcha\ReCaptcha($site_key, $secret_key, $params = null, $options = ['callback' => 'enableBtn'], $ip = null, $httpClient));
94
 
95
 
96
        // Add the CAPTCHA field
97
        $this->add([
98
            'type' => 'captcha',
99
            'name' => 'captcha',
100
            'attributes' => [
101
                'data-role' => 'none',
102
            ],
103
            'options' => [
104
                'captcha' => $captcha,
105
            ],
106
        ]);
107
    }
108
 
109
 
110
}