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


PHP FormHelper::_selectOptions方法代碼示例

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


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

示例1: _selectOptions

 /**
  * Overwrite FormHelper::_selectOptions()
  *
  * - If $attributes['style'] is `<input type="checkbox">` then replace `<label>` position
  * - Returns an array of formatted OPTION/OPTGROUP elements
  *
  * @param array $elements Elements to format.
  * @param array $parents Parents for OPTGROUP.
  * @param bool $showParents Whether to show parents.
  * @param array $attributes HTML attributes.
  * @return array
  */
 protected function _selectOptions($elements = array(), $parents = array(), $showParents = null, $attributes = array())
 {
     $selectOptions = parent::_selectOptions($elements, $parents, $showParents, $attributes);
     if ($attributes['style'] === 'checkbox') {
         foreach ($selectOptions as $key => $option) {
             $option = preg_replace('/<div.*?>/', '', $option);
             $option = preg_replace('/<\\/div>/', '', $option);
             if (preg_match('/>(<label.*?>)/', $option, $match)) {
                 $class = $attributes['class'];
                 if (preg_match('/.* class="(.*)".*/', $match[1], $classMatch)) {
                     $class = $classMatch[1] . ' ' . $attributes['class'];
                     $match[1] = str_replace(' class="' . $classMatch[1] . '"', '', $match[1]);
                 }
                 $option = $match[1] . preg_replace('/<label.*?>/', ' ', $option);
                 $option = preg_replace('/(<label.*?)(>)/', '$1 class="' . $class . '"$2', $option);
             }
             $selectOptions[$key] = $option;
         }
     }
     return $selectOptions;
 }
開發者ID:hiryu85,項目名稱:cakephp-boost-cake,代碼行數:33,代碼來源:BoostCakeFormHelper.php

示例2: _selectOptions

 /**
  * Overwrite FormHelper::_selectOptions()
  * Remove form-control if added here as it would only be added to the div.
  *
  * @param array $elements
  * @param array $parents
  * @param bool $showParents
  * @param array $attributes
  * @return array
  */
 protected function _selectOptions($elements = array(), $parents = array(), $showParents = null, $attributes = array())
 {
     if ($attributes['style'] === 'checkbox') {
         if (!empty($attributes['class']) && $attributes['class'] === array('form-control')) {
             unset($attributes['class']);
         }
     }
     $selectOptions = parent::_selectOptions($elements, $parents, $showParents, $attributes);
     return $selectOptions;
 }
開發者ID:miznokruge,項目名稱:base-cake,代碼行數:20,代碼來源:FormExtHelper.php


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