VerifyAccess.php
[Pman.Core] / VerifyAccess.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_VerifyAccess extends Pman
6 {
7     /*
8      * This is a public page
9      */
10     function getAuth() 
11     {
12         return true;
13     }
14     
15     function get($id)
16     {
17         @list($id, $key) = explode('/', $id);
18         
19         print_R($id);exit;
20         
21         
22     }
23     
24 }