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