8557ac9527a0f26c6b4886f05ded126d561c05d7
[Pman.Core] / MailTemplateList.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_MailTemplateList extends Pman
6 {
7     function getAuth()
8     {
9         $au = $this->getAuthUser();
10         if (!$au) {
11             die("NOT authenticated");
12         }
13         $this->authUser = $au;
14         return true;
15     }
16
17     function get()
18     {
19         print_r($this);exit;
20         exit;
21     }
22      
23 }