Peter Rotich Copyright (c) 2006-2014 osTicket http://www.osticket.com Released under the GNU General Public License WITHOUT ANY WARRANTY. See LICENSE.TXT for details. vim: expandtab sw=4 ts=4 sts=4: **********************************************************************/ class Application { private static $client_apps; private static $staff_apps; private static $admin_apps; function registerStaffApp($desc, $href, $info=array()) { self::$staff_apps[] = array_merge($info, array('desc'=>$desc, 'href'=>$href)); } function getStaffApps() { return self::$staff_apps; } function registerClientApp($desc, $href, $info=array()) { self::$client_apps[] = array_merge($info, array('desc'=>$desc, 'href'=>$href)); } function getClientApps() { return self::$client_apps; } function registerAdminApp($desc, $href, $info=array()) { self::$admin_apps[] = array_merge($info, array('desc'=>$desc, 'href'=>$href)); } function getAdminApps() { return self::$admin_apps; } }