コード例 #1
0
ファイル: helper.php プロジェクト: educakanchay/educa
 /**
  * Gets the name of the current Editor
  * 
  * @staticvar string $sEditor
  * @return string
  */
 public static function getEditorName()
 {
     static $sEditor;
     if (!isset($sEditor)) {
         $sEditor = JchPlatformUtility::getEditorName();
     }
     return $sEditor;
 }