13 lines
252 B
PHP
13 lines
252 B
PHP
|
<?php namespace ProcessWire;
|
||
|
|
||
|
$mantemento = $inicio->mantemento;
|
||
|
|
||
|
if($mantemento && !$user->isLoggedin())
|
||
|
{
|
||
|
$session->redirect('/praiadeseselle');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$menu = renderMenu($inicio->and($inicio->children), 0, 'paxinas');
|
||
|
$contido = '';
|
||
|
}
|