Exemplo n.º 1
0
 public function translateEvent()
 {
     return parent::translateEvent();
 }
Exemplo n.º 2
0
 public function translateRoute($sPathInfo, &$aGet)
 {
     return parent::translateRoute($sPathInfo, $aGet);
 }
Exemplo n.º 3
0
Arquivo: index.php Projeto: extend/wee
/**
	The shorthand function to get the shared application instance.
	@return The shared weeApplication instance.
	@see weeApplication::sharedInstance
*/
function weeApp()
{
    return weeApplication::sharedInstance();
}
Exemplo n.º 4
0
 public function loadFrame($sFrame)
 {
     return parent::loadFrame($sFrame);
 }
Exemplo n.º 5
0
 /**
 	Set the shared instance for this object.
 	@param $oInstance The shared instance.
 */
 public static function setSharedInstance(weeApplication $oInstance)
 {
     self::$oSharedInstance = $oInstance;
 }