view.php

来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 48 行

PHP
48
字号
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: View.php 586 2008-08-03 23:53:22Z matt $ *  * @package Piwik_Installation *//** *  * @package Piwik_Installation */class Piwik_Install_View extends Piwik_View{	protected $mainTemplate = 'Installation/templates/structure.tpl';		function __construct($subtemplatePath, $installationSteps, $currentStepName)	{		parent::__construct($this->mainTemplate);		$this->subTemplateToLoad = $subtemplatePath;		$this->steps = $installationSteps;		$this->currentStepName = $currentStepName;		$this->showNextStep = false;	}		function render()	{		// prepare the all steps templates		$this->allStepsTitle = $this->steps;		$this->currentStepId = array_search($this->currentStepName, $this->steps);		$this->totalNumberOfSteps = count($this->steps);				$this->percentDone = round(($this->currentStepId) * 100 / ($this->totalNumberOfSteps-1));		$this->percentToDo = 100 - $this->percentDone;				$this->nextModuleName = '';		if(isset($this->steps[$this->currentStepId + 1]))		{			$this->nextModuleName = $this->steps[$this->currentStepId + 1];		}				return parent::render();			}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?