blob: 4572b267f884549c33b026b2822cd8a6540b115b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
// Órarend, helyettesítés eltűntetése
unset($MENU['naplo']);
unset($MENU['modules']['naplo']['tanev']);
// A bejelentkezés oldal almenüjének törlése
unset($MENU['modules']['auth']);
// Külső hivatkozás: Sulinet portál
$MENU['sulinet'] = array(
array('txt' => 'SuliNet', 'url' => 'http://www.sulinet.hu', 'target' => '_blank'),
);
$MENU['auth'] = array(array('txt'=>'Szülői bejelentkezés','url'=>'index.php?page=auth&f=login&toPolicy=parent'));
if ($page!='auth') $NAV[1][] = array('page'=>'auth');
?>
|