<?php
$entidadeMatriz         =  1;
$entidadeSaude          =  2;
$entidadeEdu            = 21;
$entidadeSema           =  3;
$entidadeEmpreendedor   = 22;
$versao = '17';
$urlDev = 'https://jpweb.com.br';
$dominio = 'novaipixuna.pa.gov.br';
$whats = array(
    $entidadeMatriz => array(
        'numero' => '+5594992976193',
        'texto'  => 'Prefeitura de Nova Ipixuna! Olá em que podemos ajudá-lo?' ),
    $entidadeSaude => array(
        'numero' => '+5594992976193',
        'texto'  => 'Secretaria de Saúde! Olá em que podemos ajudá-lo?' ) );
$copy = array(
    $entidadeMatriz => 'PREFEITURA DE NOVA IPIXUNA',
    $entidadeSaude  => 'SAÚDE',
    $entidadeEdu    => 'EDUCAÇÃO',
    $entidadeSema   => 'MEIO AMBIENTE'
);

// ========================
// 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('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/');
define('INSTAGRAM', 'https://www.instagram.com');
define('FACEBOOK',  'https://www.facebook.com');
define('TWITTER',   'https://www.twitter.com');
define('YOUTUBE',   'https://www.youtube.com');

// ========================
// INFORMAÇÕES DE CONTATO
// ========================
define('ENDERECO',   'Endereço / Bairro');
define('CIDADE',     'Cidade / UF');
define('TELEFONE',   '(61) 98251-2032');
define('CELULAR',    '(61) 98251-2032');
define('EMAIL',      'jpweb@jpweb.com.br');
define('WHATSAPP',   '5561982512032');
define('WHATSTEXTO', 'Olá,%20em%20que%20podemos%20ajudar?');
define('COPY',       'Prefeitura de Nova Ipixuna © All Rights');

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

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

