forked from hacklabr/mapasculturais-culturaviva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf-base.php
78 lines (74 loc) · 2.2 KB
/
conf-base.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
<?php
$config['routes']['default_controller_id'] = 'rede';
$config['routes']['shortcuts']['busca'] = ['site','search'];
$config['auth.config']['onCreateRedirectUrl'] = $config['base.url'] . 'rede/entrada/';
return [
'app.siteName' => 'Rede Cultura Viva',
'app.siteDescription' => '',
'rcv.apiCNPJ' => 'http://dev.culturaviva.gov.br/wp-admin/admin-ajax.php',
'app.geoDivisionsHierarchy' => [
'estado' => 'Estado', // metadata: geoEstado
'municipio' => 'Município', // metadata: geoMunicipio
],
'redeCulturaViva.projectId' => 1,
'registration.ownerDefinition' => [
'required' => true,
'label' => 'Agente responsável pelo ponto de cultura',
'agentRelationGroupName' => 'owner',
'description' => 'Agente individual',
'type' => 1,
'requiredProperties' => []
],
'registration.agentRelations' => [
[
'required' => false,
'label' => 'Entidade',
'agentRelationGroupName' => 'entidade',
'description' => 'Agente coletivo (Entidade)',
'type' => 2,
'requiredProperties' => []
],
[
'required' => false,
'label' => 'Ponto/Pontão de Cultura',
'agentRelationGroupName' => 'ponto',
'description' => 'Agente coletivo (Ponto/Pontão de Cultura)',
'type' => 2,
'requiredProperties' => []
]
],
'registration.propertiesToExport' => array(
'id',
'name',
'nomeCompleto',
'shortDescription',
'cep',
'tem_sede',
'geoEstado',
'geoMunicipio',
'En_Bairro',
'En_Num',
'En_Nome_Logradouro',
'location', // ponto no mapa
//portifólio
'atividadesEmRealizacao',
'cpf',
'cnpj',
'endereco',
'telefone1',
'telefone1_operadora',
'telefone2',
'telefone2_operadora',
'telefonePublico',
'telefonePublico_operadora',
'emailPrivado',
'emailPublico',
'site',
'googleplus',
'facebook',
'twitter',
'flickr',
'diaspora',
'youtube'
),
];