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