Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members | File Members | Related Pages

base-alerts.inc.php

Go to the documentation of this file.
00001 <?
00008 class BaseAlerts extends MyManager
00009 {
00013     public function __construct($class = 'Alert')
00014     { 
00015         parent::__construct($class);
00016     }
00017     
00021     public function initSearchPage()
00022     {
00023         $this->assertLogin();
00024 
00025         parent::initSearchPage();
00026     }
00027     
00031     public function getSearchWhere($params)
00032     { 
00033         global $me;
00034         
00035         $sql = parent::getSearchWhere($params);
00036         $sql .= " AND user_id = '$me->id' ";
00037 
00038         return $sql;
00039     }
00040 }
00041 ?>

Generated on Fri Oct 27 12:26:40 2006 for BaseJumper by doxygen 1.3.9.1