当前位置: 首页>>代码示例>>PHP>>正文


PHP SkinTemplate::initPage方法代码示例

本文整理汇总了PHP中SkinTemplate::initPage方法的典型用法代码示例。如果您正苦于以下问题:PHP SkinTemplate::initPage方法的具体用法?PHP SkinTemplate::initPage怎么用?PHP SkinTemplate::initPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SkinTemplate的用法示例。


在下文中一共展示了SkinTemplate::initPage方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: initPage

 /** Using kiwix. */
 function initPage(OutputPage $out)
 {
     parent::initPage($out);
     $this->skinname = 'Monobook';
     $this->stylename = 'Monobook';
     $this->template = 'KiwixBaseSkin';
 }
开发者ID:kiwix,项目名称:tools,代码行数:8,代码来源:KiwixBaseSkin.php

示例2: initPage

 /**
  * initialize the page
  */
 public function initPage(OutputPage $out)
 {
     global $wgSiteJS;
     parent::initPage($out);
     $out->addModuleScripts('skins.bootstrapmediawiki');
     $out->addMeta('viewport', 'width=device-width, initial-scale=1, maximum-scale=1');
 }
开发者ID:chrishoke,项目名称:bootstrap-mediawiki,代码行数:10,代码来源:BootstrapMediaWiki.skin.php

示例3: initPage

 /** Using monobook. */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'monobook';
     $this->stylename = 'monobook';
     $this->template = 'MonoBookTemplate';
 }
开发者ID:BackupTheBerlios,项目名称:shoutwiki-svn,代码行数:8,代码来源:MonoBook.php

示例4: initPage

 /** Using monoproject. */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'Mono2';
     $this->stylename = 'Mono2';
     $this->template = 'Mono2Template';
 }
开发者ID:akoeplinger,项目名称:release,代码行数:8,代码来源:Mono2.php

示例5: initPage

 /** Using osbridge. */
 function initPage(OutputPage $out)
 {
     parent::initPage($out);
     $this->skinname = 'osbridge';
     $this->stylename = 'osbridge';
     $this->template = 'OSBridgeTemplate';
 }
开发者ID:reidab,项目名称:osbp_mediawiki_skin,代码行数:8,代码来源:OSBridge.php

示例6: initPage

 /** Using GuMax */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'gumax';
     $this->stylename = 'gumax';
     $this->template = 'GuMaxTemplate';
 }
开发者ID:Jobava,项目名称:diacritice-meta-repo,代码行数:8,代码来源:GuMax.php

示例7: initPage

 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'haputimes';
     $this->stylename = 'haputimes';
     $this->template = 'HapuTimesTemplate';
 }
开发者ID:saper,项目名称:organic-extensions,代码行数:7,代码来源:HapuTimes.php

示例8: initPage

 /** Using Bootstrap */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'bootstrap';
     $this->stylename = 'bootstrap';
     $this->template = 'BootstrapTemplate';
 }
开发者ID:nzhenev,项目名称:Bootstrap-Skin,代码行数:8,代码来源:Bootstrap.php

示例9: initPage

	/**
	 * @author Inez Korczynski <inez@wikia.com>
	 */
	public function initPage(&$out) {

		wfDebugLog('lyricsminimal', '##### SkinLyricsMinimal initPage #####');

		wfProfileIn(__METHOD__);
		global $wgHooks, $wgCityId, $wgCat;

		SkinTemplate::initPage($out);

		$this->skinname  = 'lyricsminimal';
		$this->stylename = 'lyricsminimal';
		$this->template  = 'LyricsMinimalTemplate';

		// Get category information (id, name, url)
		$cats = wfGetBreadCrumb();
		$idx = count($cats)-2;
		if(isset($cats[$idx])) {
			$wgCat = $cats[$idx];
			wfDebugLog('lyricsminimal', 'There is category info');
		} else {
			$wgCat = array('id' => -1);
			wfDebugLog('lyricsminimal', 'No category info');
		}

		// Function addVariables will be called to populate all needed data to render skin
		$wgHooks['SkinTemplateOutputPageBeforeExec'][] = array(&$this, 'addVariables');

		wfProfileOut(__METHOD__);
	}
开发者ID:schwarer2006,项目名称:wikia,代码行数:32,代码来源:LyricsMinimal.php

示例10: initPage

 /** Using monobook. */
 function initPage(OutputPage $out)
 {
     parent::initPage($out);
     $this->skinname = 'monobook';
     $this->stylename = 'monobook';
     $this->template = 'MonoBookTemplate';
 }
开发者ID:evanfarrar,项目名称:opensprints.org,代码行数:8,代码来源:MonoBook.php

示例11: initPage

 /** Using fusionforge. */
 function initPage(OutputPage $out)
 {
     parent::initPage($out);
     $this->skinname = 'fusionforge';
     $this->stylename = 'fusionforge';
     $this->template = 'FusionForgeTemplate';
 }
开发者ID:pombredanne,项目名称:tuleap,代码行数:8,代码来源:FusionForge.php

示例12: initPage

 /** Using RoundedBlue. */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'RoundedBlue';
     $this->stylename = 'RoundedBlue';
     $this->template = 'RoundedBlueTemplate';
 }
开发者ID:hnJaermuseet,项目名称:JM-booking,代码行数:8,代码来源:RoundedBlue.php

示例13: initPage

 function initPage(OutputPage $out)
 {
     parent::initPage($out);
     $this->skinname = 'modern';
     $this->stylename = 'modern';
     $this->template = 'ModernTemplate';
 }
开发者ID:amjadtbssm,项目名称:website,代码行数:7,代码来源:Modern.php

示例14: initPage

 /** Using gforge. */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'gforge';
     $this->stylename = 'gforge';
     $this->template = 'GForgeTemplate';
 }
开发者ID:neymanna,项目名称:fusionforge,代码行数:8,代码来源:GForge.php

示例15: initPage

 /** Using cavendish. */
 function initPage(&$out)
 {
     SkinTemplate::initPage($out);
     $this->skinname = 'cavendish';
     $this->stylename = 'cavendish';
     $this->template = 'cavendishTemplate';
 }
开发者ID:platform-project,项目名称:platform-project,代码行数:8,代码来源:cavendish.php


注:本文中的SkinTemplate::initPage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。