コード例 #1
0
ファイル: translation.php プロジェクト: extend/wee
 public function translateEvent()
 {
     return parent::translateEvent();
 }
コード例 #2
0
ファイル: routing.php プロジェクト: extend/wee
 public function translateRoute($sPathInfo, &$aGet)
 {
     return parent::translateRoute($sPathInfo, $aGet);
 }
コード例 #3
0
ファイル: index.php プロジェクト: extend/wee
/**
	The shorthand function to get the shared application instance.
	@return The shared weeApplication instance.
	@see weeApplication::sharedInstance
*/
function weeApp()
{
    return weeApplication::sharedInstance();
}
コード例 #4
0
ファイル: loadframe.php プロジェクト: extend/wee
 public function loadFrame($sFrame)
 {
     return parent::loadFrame($sFrame);
 }
コード例 #5
0
ファイル: weeApplication.class.php プロジェクト: extend/wee
 /**
 	Set the shared instance for this object.
 	@param $oInstance The shared instance.
 */
 public static function setSharedInstance(weeApplication $oInstance)
 {
     self::$oSharedInstance = $oInstance;
 }