00001 <?php 00003 // {{{ license 00004 00005 // +----------------------------------------------------------------------+ 00006 // | FastFrame Application Framework | 00007 // +----------------------------------------------------------------------+ 00008 // | Copyright (c) 2002-2006 The Codejanitor Group | 00009 // +----------------------------------------------------------------------+ 00010 // | This source file is subject to the GNU Lesser Public License (LGPL), | 00011 // | that is bundled with this package in the file LICENSE, and is | 00012 // | available at through the world-wide-web at | 00013 // | http://www.fsf.org/copyleft/lesser.html | 00014 // | If you did not receive a copy of the LGPL and are unable to | 00015 // | obtain it through the world-wide-web, you can get it by writing the | 00016 // | Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, | 00017 // | MA 02111-1307, USA. | 00018 // +----------------------------------------------------------------------+ 00019 // | Authors: Jason Rust <jrust@codejanitor.com> | 00020 // | Authors: Greg Gilbert <ggilbert@codejanitor.com> | 00021 // +----------------------------------------------------------------------+ 00022 00023 // }}} 00024 // {{{ class FF_ActionHandlerConfig 00025 00036 // }}} 00037 class FF_ActionHandlerConfig { 00038 // {{{ properties 00039 00044 var $actionHandler; 00045 00046 // }}} 00047 // {{{ constructor 00048 00055 function FF_ActionHandlerConfig(&$in_actionHandler) 00056 { 00057 $this->actionHandler =& $in_actionHandler; 00058 } 00059 00060 // }}} 00061 // {{{ loadConfig() 00062 00069 function loadConfig() 00070 { 00071 // interface 00072 } 00073 00074 // }}} 00075 // {{{ checkPerms() 00076 00085 function checkPerms() 00086 { 00087 return true; 00088 } 00089 00090 // }}} 00091 // {{{ hasCheckAuth 00092 00099 function hasCheckAuth() 00100 { 00101 return false; 00102 } 00103 00104 //}}} 00105 // {{{ checkAuth() 00106 00114 function checkAuth() 00115 { 00116 return false; 00117 } 00118 00119 // }}} 00120 } 00121 ?>
1.4.4