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


PHP WFEditor::getParam方法代碼示例

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


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

示例1: getParam

 /**
  * Get a parameter by key
  * 
  * @access 	public
  * @param 	string $key Parameter key eg: editor.width
  * @param 	mixed $fallback Fallback value
  * @param 	mixed $default Default value
  * @param 	string $type Variable type eg: string, boolean, integer, array
  * @param 	bool $allowempty
  * @return 	mixed
  */
 public function getParam($key, $fallback = '', $default = '', $type = 'string', $allowempty = true)
 {
     // get plugin name
     $name = $this->getName();
     // get all keys
     $keys = explode('.', $key);
     // root key set
     if ($keys[0] === 'editor' || $keys[0] === $name) {
         return parent::getParam($key, $fallback, $default, $type, $allowempty);
         // no root key set, treat as shared param
     } else {
         // get all params
         $params = parent::getParams();
         // check plugin param and fallback to editor param
         $param = $params->get($name . '.' . $key, $params->get('editor.' . $key, $fallback, $allowempty), $allowempty);
         if (is_string($param) && $type === 'string') {
             $param = self::cleanParam($param);
         }
         if (is_numeric($default)) {
             $default = intval($default);
         }
         if (is_numeric($param)) {
             $param = intval($param);
         }
         if ($param === $default) {
             return '';
         }
         if ($type === 'boolean') {
             $param = (bool) $param;
         }
         return $param;
     }
 }
開發者ID:optimosolution,項目名稱:marhk,代碼行數:44,代碼來源:plugin.php


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