forked from govce/Saude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
event-types.php
198 lines (190 loc) · 6.77 KB
/
event-types.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
/**
* See https://github.com/Respect/Validation to know how to write validations
*/
return array(
'metadata' => array(
'subTitle' => array(
'label' => \MapasCulturais\i::__('Sub-Título'),
'type' => 'text'
),
'registrationInfo' => array(
'label' => \MapasCulturais\i::__('Inscrições'),
'type' => 'text'
),
'classificacaoEtaria' => array(
'label' => \MapasCulturais\i::__('Classificação Etária'),
'type' => 'select',
'options' => array(
'Livre' => \MapasCulturais\i::__('Livre'),
'18 anos' => \MapasCulturais\i::__('18 anos'),
'16 anos' => \MapasCulturais\i::__('16 anos'),
'14 anos' => \MapasCulturais\i::__('14 anos'),
'12 anos' => \MapasCulturais\i::__('12 anos'),
'10 anos' => \MapasCulturais\i::__('10 anos')
),
'validations' => array(
'required' => \MapasCulturais\i::__("A classificação etária é obrigatória.")
)
),
'telefonePublico' => array(
'label' => \MapasCulturais\i::__('Mais Informações'),
'type' => 'string',
/*'validations' => array(
'v::allOf(v::regex("#^\(\d{2}\)[ ]?\d{4,5}-\d{4}$#"), v::brPhone())' => \MapasCulturais\i::__('Por favor, informe o telefone público no formato (xx) xxxx-xxxx.')
)*/
),
'preco' => array(
'label' => \MapasCulturais\i::__('Preço')
),
'traducaoLibras' => array(
'label' => \MapasCulturais\i::__('Tradução para LIBRAS'),
'type' => 'select',
'options' => array(
'' => \MapasCulturais\i::__('Não Informado'),
'Sim' => \MapasCulturais\i::__('Sim'),
'Não' => \MapasCulturais\i::__('Não')
)
),
'descricaoSonora' => array(
'label' => \MapasCulturais\i::__('Áudio descrição'),
'type' => 'select',
'options' => array(
'' => \MapasCulturais\i::__('Não Informado'),
'Sim' => \MapasCulturais\i::__('Sim'),
'Não' => \MapasCulturais\i::__('Não')
)
),
'site' => array(
'label' => \MapasCulturais\i::__('Site'),
'validations' => array(
"v::url()" => \MapasCulturais\i::__("A url informada é inválida.")
)
),
'facebook' => array(
'label' => \MapasCulturais\i::__('Facebook'),
'validations' => array(
"v::url('facebook.com')" => \MapasCulturais\i::__("A url informada é inválida.")
)
),
'twitter' => array(
'label' => \MapasCulturais\i::__('Twitter'),
'validations' => array(
"v::url('twitter.com')" => \MapasCulturais\i::__("A url informada é inválida.")
)
),
'googleplus' => array(
'label' => \MapasCulturais\i::__('Google+'),
'validations' => array(
"v::url('plus.google.com')" => \MapasCulturais\i::__("A url informada é inválida.")
)
),
'instagram' => array(
'label' => \MapasCulturais\i::__('Instagram'),
'validations' => array(
"v::startsWith('@')" => \MapasCulturais\i::__("O usuário informado é inválido. Informe no formato @usuario e tente novamente")
)
)
),
'items' => array(
1 => array('name' => \MapasCulturais\i::__('Padrão')),
)
/* EXEMPLOS DE METADADOS:
'cnpj' => array(
'label' => 'CNPJ',
'type' => 'text',
'validations' => array(
'unique' => \MapasCulturais\i::__('Este CNPJ já está cadastrado em nosso sistema.'),
'v::cnpj()' => \MapasCulturais\i::__('O CNPJ é inválido.')
)
),
'cpf' => array(
'label' => 'CPF',
'type' => 'text',
'validations' => array(
'required' => 'Por favor, informe o CPF.',
'v::cpf()' => 'O CPF é inválido.'
)
),
'radio' => array(
'label' => 'Um exemplo de input radio',
'type' => 'radio',
'options' => array(
'valor1' => 'Label do valor 1',
'valor2' => 'Label do valor 2',
),
'default_value' => 'valor1'
),
'checkboxes' => array(
'label' => 'Um exemplo de grupo de checkboxes',
'type' => 'checkboxes',
'options' => array(
'valor1' => 'Label do Primeiro checkbox',
'valor2' => 'Label do Primeiro checkbox'
),
'default_value' => array(),
'validations' => array(
'v::arrayType()->notEmpty()' => 'Você deve marcar ao menos uma opção.'
)
),
'checkbox' => array(
'label' => 'Um exemplo de campo booleano com checkbox.',
'type' => 'checkbox',
'input_value' => 1,
'default_value' => 0
),
'email' => array(
'label' => 'Email público para contato',
'type' => 'text',
'validations'=> array(
'v::email()' => 'O email informado é inválido.'
)
),
'site' => array(
'label' => 'Site',
'type' => 'text',
'validations'=> array(
'v::url()' => 'A URL informada é inválida.'
)
),
'estado' => array(
'label' => 'Estado de Residência',
'type' => 'select',
'options' => array(
'' => '',
'AC' => 'Acre',
'AL' => 'Alagoas',
'AM' => 'Amazonas',
'AP' => 'Amapá',
'BA' => 'Bahia',
'CE' => 'Ceará',
'DF' => 'Distrito Federal',
'ES' => 'Espírito Santo',
'GO' => 'Goiás',
'MA' => 'Maranhão',
'MG' => 'Minas Gerais',
'MS' => 'Mato Grosso do Sul',
'MT' => 'Mato Grosso',
'PA' => 'Pará',
'PB' => 'Paraíba',
'PE' => 'Pernambuco',
'PI' => 'Piauí',
'PR' => 'Paraná',
'RJ' => 'Rio de Janeiro',
'RN' => 'Rio Grande do Norte',
'RO' => 'Rondônia',
'RR' => 'Roraima',
'RS' => 'Rio Grande do Sul',
'SC' => 'Santa Catarina',
'SE' => 'Sergipe',
'SP' => 'São Paulo',
'TO' => 'Tocantins',
'' => '',
'OUT' => 'Resido Fora do Brasil'
),
'validations' => array(
"v::stringType()->in('AC','AL','AM','AP','BA','CE','DF','ES','GO','MA','MG','MS','MT','PA','PB','PE','PI','PR','RJ','RN','RO','RR','RS','SC','SE','SP','TO','OUT')" => 'O estado informado não existe.'
)
)
*/
);