Skip to content

Commit

Permalink
Merge branch 'master' of github.com:hacklabr/mapas-AP
Browse files Browse the repository at this point in the history
  • Loading branch information
LimaSystem committed Nov 22, 2024
2 parents 5987e62 + 61610f7 commit fc44754
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hacklab/mapasculturais:latest
FROM hacklab/mapasculturais:7.5.11

COPY themes /var/www/src/themes
COPY plugins /var/www/src/plugins
Expand Down
13 changes: 11 additions & 2 deletions docker/common/config.d/0.main.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
use MapasCulturais\i;

return [
'app.siteName' => 'Mapa Cultural do Amapá',
Expand All @@ -8,6 +9,14 @@
'themes.active' => 'MapasAp',

// Ids dos selos verificadores. Para utilizar múltiplos selos informe os ids separados por vírgula.
'app.verifiedSealsIds' => '1',

'app.verifiedSealsIds' => '1',
'app.geoDivisionsHierarchy' => [
'pais' => ['name' => i::__('País'), 'showLayer' => true],
'estado' => ['name' => i::__('Estado'), 'showLayer' => true],
'mesorregiao' => ['name' => i::__('Mesorregião'), 'showLayer' => true],
// 'RI' => ['name' => i::__('Região de integração'),'showLayer' => true],
'microrregiao' => ['name' => i::__('Microrregião'), 'showLayer' => true],
'municipio' => ['name' => i::__('Município'), 'showLayer' => true],
],
'app.geoDivisionsFilters' => [16],
];

0 comments on commit fc44754

Please sign in to comment.