当前位置: 首页>>代码示例>>PHP>>正文


PHP WP_Customize_Setting::sanitize方法代码示例

本文整理汇总了PHP中WP_Customize_Setting::sanitize方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_Customize_Setting::sanitize方法的具体用法?PHP WP_Customize_Setting::sanitize怎么用?PHP WP_Customize_Setting::sanitize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WP_Customize_Setting的用法示例。


在下文中一共展示了WP_Customize_Setting::sanitize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: post_value

 /**
  * Returns the sanitized value for a given setting from the request's POST data.
  *
  * @since 3.4.0
  * @since 4.1.1 Introduced the `$default` parameter.
  * @since 4.6.0 `$default` is now returned early when the setting post value is invalid.
  * @access public
  *
  * @see WP_REST_Server::dispatch()
  * @see WP_Rest_Request::sanitize_params()
  * @see WP_Rest_Request::has_valid_params()
  *
  * @param WP_Customize_Setting $setting A WP_Customize_Setting derived object.
  * @param mixed                $default Value returned $setting has no post value (added in 4.2.0)
  *                                      or the post value is invalid (added in 4.6.0).
  * @return string|mixed $post_value Sanitized value or the $default provided.
  */
 public function post_value($setting, $default = null)
 {
     $post_values = $this->unsanitized_post_values();
     if (!array_key_exists($setting->id, $post_values)) {
         return $default;
     }
     $value = $post_values[$setting->id];
     $valid = $setting->validate($value);
     if (is_wp_error($valid)) {
         return $default;
     }
     $value = $setting->sanitize($value);
     if (is_null($value) || is_wp_error($value)) {
         return $default;
     }
     return $value;
 }
开发者ID:inpsyde,项目名称:wordpress-dev,代码行数:34,代码来源:class-wp-customize-manager.php

示例2: post_value

 /**
  * Return the sanitized value for a given setting from the request's POST data.
  *
  * @since 3.4.0
  * @since 4.1.1 Introduced 'default' parameter.
  *
  * @param WP_Customize_Setting $setting A WP_Customize_Setting derived object
  * @param mixed $default value returned $setting has no post value (added in 4.2.0).
  * @return string|mixed $post_value Sanitized value or the $default provided
  */
 public function post_value($setting, $default = null)
 {
     $post_values = $this->unsanitized_post_values();
     if (array_key_exists($setting->id, $post_values)) {
         return $setting->sanitize($post_values[$setting->id]);
     } else {
         return $default;
     }
 }
开发者ID:RA2WP,项目名称:RA2WP,代码行数:19,代码来源:class-wp-customize-manager.php

示例3: post_value

 /**
  * Decode the $_POST['customized'] values for a specific Customize Setting.
  *
  * @since 3.4.0
  *
  * @param WP_Customize_Setting $setting A WP_Customize_Setting derived object
  * @return string $post_value Sanitized value
  */
 public function post_value($setting)
 {
     if (!isset($this->_post_values)) {
         if (isset($_POST['customized'])) {
             $this->_post_values = json_decode(wp_unslash($_POST['customized']), true);
         } else {
             $this->_post_values = false;
         }
     }
     if (isset($this->_post_values[$setting->id])) {
         return $setting->sanitize($this->_post_values[$setting->id]);
     }
 }
开发者ID:hachi4,项目名称:WordPress,代码行数:21,代码来源:class-wp-customize-manager.php


注:本文中的WP_Customize_Setting::sanitize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。