<?php
$entidadeMatriz = 1;
$entidadeSaude  = 2;
$entidadeEdu    = 4;
$entidadeSema   = 5;
$entidadeMei    = 8;
$versao = '17';
$urlDev = 'https://jpweb.com.br';
$dominio = 'sfxingu.pa.gov.br';
$whats = array(
    $entidadeMatriz => array(
        'numero' => '+5594981367442',
        'texto'  => 'Prefeitura de São Félix do Xingu! Olá em que podemos ajudá-lo?' ),
    $entidadeSaude => array(
        'numero' => '+5594981367442',
        'texto'  => 'Secretaria de Saúde! Olá em que podemos ajudá-lo?' ) );
$copy = array(
    $entidadeMatriz => 'PREFEITURA SÃO FÉLIX DO XINGU',
    $entidadeSaude  => 'SAÚDE',
    $entidadeEdu    => 'EDUCAÇÃO',
    $entidadeSema   => 'MEIO AMBIENTE'
);

// ========================
// PARA INCLUDES 
// ========================
define('INC_CUSTOM',  realpath(__DIR__ . '/../custom')  . '/');
define('INC_APPS',    realpath(__DIR__ . '/../apps')    . '/');
define('INC_CONTENT', realpath(__DIR__ . '/../content') . '/');

// ========================
// LINKS / URLS
// ========================
define('DEV',       $urlDev);
define('WEBMAIL',   'https://'.$dominio);
define('URL',       'https://' . $dominio . '/');
define('URLS',      'https://' . $dominio . '/web/'); 
define('TRANS',     'https://' . $dominio . '/web/index_trans.php');
define('TRANSPAG',  'https://' . $dominio . '/web/pag_trans.php/');
define('SAUDE',     'https://saude.' . $dominio . '/');
define('EDU',       'https://edu.'   . $dominio . '/');
define('SEMA',      'https://sema.'  . $dominio . '/');
define('WHATS',     $whats);
define('copyR',     $copy);
define('CSS',       'https://' . $dominio . '/content/css/');
define('PLUGINS',   'https://' . $dominio . '/content/plugins/');
define('CONTENT',   'https://' . $dominio . '/content/');
define('APPS',      'https://' . $dominio . '/apps/');
define('CUSTOM',    'https://' . $dominio . '/custom/');
define('IMAGENS',   'https://' . $dominio . '/imagens/');

// ========================
// INFORMAÇÕES DE CONTATO
// ========================
define('INSTAGRAM', 'https://www.instagram.com/prefeituraxingu?igsh=MTQxNHZwOHp3eTVqNA%3D%3D');
define('FACEBOOK',  'https://www.facebook.com/prefeitura.sfx');
define('KWAI',      'https://k.kwai.com/u/@prefeiturasfx/XF9Cn57z');
define('TIKTOK',    'https://tiktok.com/@prefeiturasfx?_t=ZM-8ubHFUE3HB1&_r=1');
define('TWITTER',   'https://www.twitter.com');
define('YOUTUBE',   'https://www.youtube.com/channel/UCbu1YjJiDWMjXP6TToVm9zw');
define('ENDERECO',  'Av. 22 de Março, 915, Centro');
define('CIDADE',    'São Félix do Xingu / PA');
define('TELEFONE',  '(94) 98136-7442');
define('CELULAR',   '(94) 98136-7442');
define('EMAIL', '');
define('WHATSAPP',  '5594981318618');
define('WHATSTEXTO','Olá,%20em%20que%20podemos%20ajudar?');
define('COPY',      'São Félix do Xingu © All Rights');

// ========================
// LÓGICA DE SUBDOMÍNIO
// ========================
$host = $_SERVER['HTTP_HOST'];
$subdomain = explode('.', $host)[0];

if ($subdomain === 'edu') {
    $mainPageName = 'Educação';
    $mainPageLink = 'https://edu.jpweb.app.br';
} elseif ($subdomain === 'saude') {
    $mainPageName = 'Saúde';
    $mainPageLink = 'https://saude.jpweb.app.br';
} elseif ($subdomain === 'sema') {
    $mainPageName = 'Meio Ambiente';
    $mainPageLink = 'https://sema.jpweb.app.br';
} else {
    $mainPageName = 'Prefeitura';
    $mainPageLink = 'https://jpweb.app.br/web';
}
?>
