GoogleKey.php
[Pman.Core] / GoogleKey.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_GoogleKey extends Pman
6 {
7     function getAuth()
8     {
9         
10         $au = $this->getAuthUser();
11         if (!$au) {
12             $this->jerrAuth("only authenticated users");
13         }
14         
15         $this->authUser = $au;
16     }
17     
18     function post()
19     {
20         $ff = HTML_FlexyFramework::get()->Pman_Core['googlekey'];
21         $this->jdata()
22         
23     }
24     
25     
26 }