Subversion Repositories Applications.papyrus

Rev

Rev 1372 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
954 florian 1
<?php
2
/*
3
hello.php
4
Nouvel handler  'hello' ou remplace le handler hello si déjà présent
5
*/
6
 
7
 
8
// Vérification de sécurité
9
if (!defined("WIKINI_VERSION"))
10
{
11
        die ("acc&egrave;s direct interdit");
12
}
13
 
14
 
15
echo $this->Format("===== Bonjour !=====");
16
 
17
if ($this->HasAccess("read"))
18
{
19
        if (!$this->page)
20
        {
21
                return;
22
        }
23
        else
24
        {
25
                echo $this->Format($this->page["body"]);
26
        }
27
}
28
 
29
 
30
?>