yii2源碼學習筆記(十七)

来源:http://www.cnblogs.com/dragon16/archive/2016/06/17/5595122.html
-Advertisement-
Play Games

Theme 類,應用的主題,通過替換路徑實現主題的應用,方法為獲取根路徑和根鏈接:yii2\base\Theme.php ...


Theme 類,應用的主題,通過替換路徑實現主題的應用,方法為獲取根路徑和根鏈接:yii2\base\Theme.php

  1 <?php
  2 /**
  3  * @link http://www.yiiframework.com/
  4  * @copyright Copyright (c) 2008 Yii Software LLC
  5  * @license http://www.yiiframework.com/license/
  6  */
  7 
  8 namespace yii\base;
  9 
 10 use Yii;
 11 use yii\helpers\FileHelper;
 12 
 13 /**
 14  * Theme represents an application theme.
 15  * Theme 類,應用的主題
 16  * When [[View]] renders a view file, it will check the [[View::theme|active theme]]
 17  * to see if there is a themed version of the view file exists. If so, the themed version will be rendered instead.
 18  * 視圖對象[[View]]渲染視圖文件的時候,會檢查視圖的主題是否存在,如果存在則渲染主題取代預設樣式
 19  * A theme is a directory consisting of view files which are meant to replace their non-themed counterparts.
 20  *
 21  * Theme uses [[pathMap]] to achieve the view file replacement:
 22  *
 23  * 1. It first looks for a key in [[pathMap]] that is a substring of the given view file path;
 24  *  首先查找關鍵字,關鍵字是一個給定的視圖路徑的字元串
 25  * 2. If such a key exists, the corresponding value will be used to replace the corresponding part
 26  *    in the view file path;關鍵字存在,則用對應值替換給定的視圖文件路徑中對應的部分
 27  * 3. It will then check if the updated view file exists or not. If so, that file will be used
 28  *    to replace the original view file.檢查替換後的路徑對應的文件是否存在,存在就替換原文件
 29  * 4. If Step 2 or 3 fails, the original view file will be used.
 30  * 2和3失敗的話,返回原來的路徑
 31  * For example, if [[pathMap]] is `['@app/views' => '@app/themes/basic']`,
 32  * then the themed version for a view file `@app/views/site/index.php` will be
 33  * `@app/themes/basic/site/index.php`.
 34  *
 35  * It is possible to map a single path to multiple paths. For example,
 36  *
 37  * ~~~
 38  * 'pathMap' => [
 39  *     '@app/views' => [
 40  *         '@app/themes/christmas',
 41  *         '@app/themes/basic',
 42  *     ],
 43  * ]
 44  * ~~~
 45  *
 46  * In this case, the themed version could be either `@app/themes/christmas/site/index.php` or
 47  * `@app/themes/basic/site/index.php`. The former has precedence over the latter if both files exist.
 48  *
 49  * To use a theme, you should configure the [[View::theme|theme]] property of the "view" application
 50  * component like the following:
 51  *
 52  * ~~~
 53  * 'view' => [
 54  *     'theme' => [
 55  *         'basePath' => '@app/themes/basic',
 56  *         'baseUrl' => '@web/themes/basic',
 57  *     ],
 58  * ],
 59  * ~~~
 60  *
 61  * The above configuration specifies a theme located under the "themes/basic" directory of the Web folder
 62  * that contains the entry script of the application. If your theme is designed to handle modules,
 63  * you may configure the [[pathMap]] property like described above.
 64  *
 65  * @property string $basePath The root path of this theme. All resources of this theme are located under this
 66  * directory.
 67  * @property string $baseUrl The base URL (without ending slash) for this theme. All resources of this theme
 68  * are considered to be under this base URL. This property is read-only.
 69  *
 70  * @author Qiang Xue <[email protected]>
 71  * @since 2.0
 72  */
 73 class Theme extends Component
 74 {
 75     /**
 76      * @var array the mapping between view directories and their corresponding themed versions.
 77      * This property is used by [[applyTo()]] when a view is trying to apply the theme.
 78      * Path aliases can be used when specifying directories.
 79      * 路徑映射屬性 設置替換映射關係
 80      * If this property is empty or not set, a mapping [[Application::basePath]] to [[basePath]] will be used.
 81      */
 82     public $pathMap;
 83 
 84     private $_baseUrl;//設置要訪問資源的url
 85 
 86     /**
 87      * @return string the base URL (without ending slash) for this theme. All resources of this theme are considered
 88      * to be under this base URL. 返回當前主題的基礎鏈接,其他資源都在鏈接里
 89      */
 90     public function getBaseUrl()
 91     {
 92         return $this->_baseUrl;
 93     }
 94 
 95     /**
 96      * @param $url string the base URL or path alias for this theme. All resources of this theme are considered
 97      * to be under this base URL. 設置基礎鏈接
 98      */
 99     public function setBaseUrl($url)
100     {
101         $this->_baseUrl = rtrim(Yii::getAlias($url), '/');
102     }
103 
104     private $_basePath;//根路徑
105 
106     /**
107      * @return string the root path of this theme. All resources of this theme are located under this directory.
108      * 得到當前主題的根路徑
109      * @see pathMap
110      */
111     public function getBasePath()
112     {
113         return $this->_basePath;
114     }
115 
116     /**
117      * @param string $path the root path or path alias of this theme. All resources of this theme are located
118      * under this directory. 設置當前主題根路徑
119      * @see pathMap
120      */
121     public function setBasePath($path)
122     {
123         $this->_basePath = Yii::getAlias($path);
124     }
125 
126     /**
127      * Converts a file to a themed file if possible. 將一個文件替換主題文件
128      * If there is no corresponding themed file, the original file will be returned.
129      * 沒有相應的主題文件,返回原文件。
130      * @param string $path the file to be themed
131      * @return string the themed file, or the original file if the themed version is not available.
132      * @throws InvalidConfigException if [[basePath]] is not set
133      */
134     public function applyTo($path)
135     {
136         $pathMap = $this->pathMap; //取得路徑映射
137         if (empty($pathMap)) {//沒有設置值 拋出異常
138             if (($basePath = $this->getBasePath()) === null) {
139                 throw new InvalidConfigException('The "basePath" property must be set.');
140             }
141             //設置值為[模塊根路徑=>主題根路徑]的形式
142             $pathMap = [Yii::$app->getBasePath() => [$basePath]];
143         }
144 
145         $path = FileHelper::normalizePath($path);//對路徑中的"/"."\"進行統一
146 
147         foreach ($pathMap as $from => $tos) {
148             //映射數組中的來源
149             $from = FileHelper::normalizePath(Yii::getAlias($from)) . DIRECTORY_SEPARATOR;
150             if (strpos($path, $from) === 0) {//如果在$path中有可替換的舊值
151                 $n = strlen($from);
152                 foreach ((array) $tos as $to) {
153                     $to = FileHelper::normalizePath(Yii::getAlias($to)) . DIRECTORY_SEPARATOR;
154                     $file = $to . substr($path, $n);//把$path中的$from替換為$to
155                     if (is_file($file)) {
156                         return $file; //是文件直接返回
157                     }
158                 }
159             }
160         }
161 
162         return $path;
163     }
164 
165     /**
166      * Converts a relative URL into an absolute URL using [[baseUrl]].
167      * 將一個相對URL轉換為絕對URL
168      * @param string $url the relative URL to be converted.要轉換的相對URL
169      * @return string the absolute URL  替換後的絕對URL
170      * @throws InvalidConfigException if [[baseUrl]] is not set
171      */
172     public function getUrl($url)
173     {
174         if (($baseUrl = $this->getBaseUrl()) !== null) {//URL存在,進行轉換
175             return $baseUrl . '/' . ltrim($url, '/');
176         } else {//不存在拋出異常
177             throw new InvalidConfigException('The "baseUrl" property must be set.');
178         }
179     }
180 
181     /**
182      * Converts a relative file path into an absolute one using [[basePath]].
183      * 通過相對路徑生成絕對路徑
184      * @param string $path the relative file path to be converted. 要轉換的相對文件路徑。
185      * @return string the absolute file path 轉換後的絕對路徑
186      * @throws InvalidConfigException if [[baseUrl]] is not set
187      */
188     public function getPath($path)
189     {
190         if (($basePath = $this->getBasePath()) !== null) {
191             //返回拼接的路徑
192             return $basePath . DIRECTORY_SEPARATOR . ltrim($path, '/\\');
193         } else {
194             throw new InvalidConfigException('The "basePath" property must be set.');
195         }
196     }
197 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 俗話說技多不壓身,當年苦讀《深入理解JVM》還專門整理了筆記,現在就用上了~ 筆記 http://www.cnblogs.com/syjkfind/p/3901774.html 【癥狀】 用戶操作數據導出時總會發生卡頓,後臺占記憶體的定時任務發生時也會。JVM參數就不貼了,比較普通且相對合理。 【思路 ...
  • package com.pro.dao.impl; import java.sql.Date;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sq ...
  • 自從學了c語言,就一直想做個游戲,今天將之付之行動,第一次寫的特別爛,各種bug;就不貼了。今天網上看了好幾個貪吃蛇,重新寫了一次,做出來的效果還可以。 下麵是詳細的構建過程,本節因為時間限制,先貼出比較重要的控制函數實現,並用它做一個很簡單很簡單很有趣的畫圖程式。 首先,要對貪吃蛇的結構有一個大概 ...
  • java中的單例模式都很熟悉了:簡單地說就是一個類只能有一個實例。在scala中創建單例對象非常簡單,創建類時使用object關鍵字替換class即可。因為單例類無法初始化,所以不能向它的主構造函數傳遞參數。 下麵是一個單例的示例: class Marker(val color: String) {... ...
  • 函數原型: 頭文件: 引入: 字元串由'\0'結尾,所以字元串內部不能包含任何'\0'字元('\0'的ASCII值為0),否則我們將讀不到'\0'後的字元內容。但是,非字元串內部包含零值的情況並不罕見,我們無法利於其它字元串函數來處理這類數據。所以,我們要引入記憶體操作的函數來處理。 memcpy m ...
  • (•̀ᴗ•́)و ̑̑ 單鏈表/雙向鏈表的建立/遍歷/插入/刪除實例 迴圈鏈表的概念 ...
  • 上一節,描述了服務發現、負載均衡以及服務之間的調用。到這裡,加上第二節的服務註冊,整個微服務的架構就已經搭建出來了,即功能性需求就完成了。從本節開始的記錄其實全部都是非功能性需求。 一、集群容錯 技術選型:hystrix。(就是上圖中熔斷器) 熔斷的作用: 第一個作用: 假設有兩台伺服器server ...
  • 先測試了一下加減,檢查一下環境,又調用函數測試了伺服器名。 源代碼: 生成測試文件: 這裡的伺服器測試用例是手動加上去的! 執行結果: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...