⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view.php

📁 一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:按照需要PHP5.1以上和MySQL数据库支持。
💻 PHP
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -