當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Import::style方法代碼示例

本文整理匯總了PHP中Import::style方法的典型用法代碼示例。如果您正苦於以下問題:PHP Import::style方法的具體用法?PHP Import::style怎麽用?PHP Import::style使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Import的用法示例。


在下文中一共展示了Import::style方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: main

 public function main($params = '')
 {
     //----------------------------------------------------------------------------------------------------
     // Gönderilen veriler: font, style, title
     //----------------------------------------------------------------------------------------------------
     $data['font'] = Import::font('font', true);
     $data['style'] = Import::style('style', true);
     $data['title'] = 'ZERONEED PHP WEB FRAMEWORK';
     //----------------------------------------------------------------------------------------------------
     // Dahil edilen sayfa: Application/Views/welcome.php
     //----------------------------------------------------------------------------------------------------
     Import::view('welcome', $data);
 }
開發者ID:bytemtek,項目名稱:znframework,代碼行數:13,代碼來源:home.php

示例2: index

 public function index($params = "")
 {
     /******************************************************************************************
     		* Gönderilen Veriler                                                                      *
     		*******************************************************************************************
     		| 1. title => ZN FRAMEWORK                                                                |
     		| 2. style => Views/Styles/style.css                                                      |
     		| 3. font => Views/Fonts/textfont.ttf                                                     |
     		| 4. welcomeMessage => ZN KOD ÇATISINA HOŞ GELDİNİZ                                       |
     		******************************************************************************************/
     $data["title"] = "ZN FRAMEWORK";
     $data["style"] = Import::style("style", true);
     $data["font"] = Import::font("textfont", true);
     $data["welcomeMessage"] = "PHP Web Framework <b>Made In Turkey</b>";
     /******************************************************************************************
     		* Dahil Edilen Welcome.php Görünüm Sayfası                                                *
     		*******************************************************************************************
     		| 1. welcome => Views/Pages/welcome.php sayfası dahil ediliyor.					          |
     		| 2. data => Yukarıdaki verileri tutan data dizisi dahil edilen sayfaya gönderiliyor.	  |
     		| 3. false => Sayfa doğrudan görüntüleniyor.				          			  		  |
     		| NOT: Bu işlem için view() ya da page() yöntemlerinden her ikiside kullanılabilir.		  |
     		******************************************************************************************/
     Import::view("welcome", $data);
 }
開發者ID:erdidoqan,項目名稱:znframework,代碼行數:24,代碼來源:home.php

示例3: library

 public function library()
 {
     Import::style(func_get_args());
     return $this;
 }
開發者ID:bytemtek,項目名稱:znframework,代碼行數:5,代碼來源:Style.php

示例4: library

 public function library()
 {
     $arguments = array_unique(func_get_args());
     Import::style($arguments);
     return $this;
 }
開發者ID:Allopa,項目名稱:ZN-Framework-Starter,代碼行數:6,代碼來源:Style.php


注:本文中的Import::style方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。