예제 #1
0
파일: yui.php 프로젝트: clrh/mediawiki
 function yuiClass($mgwords = null, $passingStyle = self::mw_style, $depth = 1)
 {
     parent::__construct($mgwords, $passingStyle, $depth);
     // required by ExtensionClass
     global $wgExtensionCredits;
     $wgExtensionCredits['other'][] = array('name' => self::thisName, 'version' => 'v1.01 $LastChangedRevision$', 'author' => 'Jean-Lou Dupont', 'url' => 'http://www.bluecortex.com', 'description' => 'Yahoo User Interface base class for Mediawiki ');
     self::$slist = array();
     self::$stylelist = array();
 }
예제 #2
0
 function ClipboardClass()
 {
     parent::__construct();
     // required by ExtensionClass
     global $wgHooks;
     $wgHooks['MonoBookTemplateToolboxEnd'][] = array($this, 'hToolboxEnd');
     $wgHooks['BeforePageDisplay'][] = array($this, 'hBeforePageDisplay');
     $this->_scriptsAdded = false;
 }
 public function SuperGroupsClass($mgwords, $passingStyle, $depth, $initFirst)
 {
     return parent::__construct($mgwords, $passingStyle, $depth, $initFirst);
 }
예제 #4
0
 public function RequestTools()
 {
     return parent::__construct(self::$mgwords);
 }