Ignore:
Timestamp:
03/29/07 14:23:18 (17 years ago)
Author:
niltonneto
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoAdmin1_2/inc/class.db_functions.inc.php

    r2 r9  
    503503                return $serverList; 
    504504        } 
     505         
     506        function get_apps($account_lid) 
     507        { 
     508                $this->db->query("SELECT * FROM phpgw_expressoadmin_apps WHERE manager_lid = '".$account_lid."'"); 
     509                 
     510                while($this->db->next_record()) 
     511                { 
     512                        $tmp = $this->db->row(); 
     513                        $availableApps[$tmp['app']] = 'run';  
     514                } 
     515                         
     516                return $availableApps; 
     517        } 
    505518} 
    506519?> 
Note: See TracChangeset for help on using the changeset viewer.