Method |
Description |
|
__call ( $func, $args ) |
|
|
__construct ( string | null $path = null, array $options = [] ) : void |
__construct 建出一個 Pix_Partial ,並且將路徑設定成 $path |
|
__get ( $k ) |
|
|
__isset ( $k ) |
|
|
__set ( $k, $v ) |
|
|
addCommonHelpers ( ) : void |
addCommonHelpers add common helpers |
|
addHelper ( string $helper, array $methods = null, array $options = [] ) : void |
addHelper add static helper in Pix_Controller |
|
breakRender ( ) : void |
breakRender 在 partial 內呼叫 function ,呼叫此 function 時,整個 partial 前面已經生成的部分會照常被印出。 |
|
escape ( $var ) |
|
|
getCommentMode ( ) |
|
|
getHelperManager ( ) : Pix_Helper_Manager |
getHelperManager get Helper Manager |
|
getMinifyMode ( ) : boolean |
getMinifyMode 取得 Minify Mode 是否開啟 |
|
getNoCache ( ) : boolean |
getNoCache 取得 nocache 是否開啟 |
|
getPath ( ) : void |
getPath 取出 Partial 的 path |
|
getTrimMode ( ) : boolean |
getTrimMode 取得 Trim Mode 是否開啟 |
|
noRender ( ) : void |
noRender 在 partial 內呼叫 function ,呼叫此 function 時,整個 partial 前面已經生成的部分會被捨棄。 |
|
partial ( string $file, array | Pix_Partial | null $data = null, array | string $options = null ) : string |
partial 印出 $file 的內容,並且將 $data 的參數轉成 $this |
|
setCacheWriteOnlyMode ( $write_only ) |
|
|
setCommentMode ( mixed $comment_mode = false ) : void |
setCommentMode 註解模式,會在 partial 前面顯示他是哪個 partial |
|
setMinifyMode ( boolean $minify_mode = false ) : void |
setMinifyMode 是否要啟動 Minify mode,把換行與不必要的空白都拿掉 |
|
setNoCache ( boolean $nocache = false ) : void |
setNoCache 是否不啟動 cache (預設啟動) |
|
setPath ( string $path ) : void |
setPath 將 Partial 自動讀取路徑設定為 $path |
|
setTrimMode ( boolean $trim_mode = false ) : void |
setTrimMode 是否要啟動 Trim mode ,預設把每一行的前後空白拿掉 |
|