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


PHP RWMB_Field::get_value方法代码示例

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


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

示例1: get_value

 /**
  * Get the field value. Return meaningful info of the files.
  *
  * @param  array    $field   Field parameters
  * @param  array    $args    Not used for this field
  * @param  int|null $post_id Post ID. null for current post. Optional.
  *
  * @return mixed Full info of uploaded files
  */
 public static function get_value($field, $args = array(), $post_id = null)
 {
     $value = parent::get_value($field, $args, $post_id);
     if (!$field['clone']) {
         $value = self::call('files_info', $field, $value, $args);
     } else {
         $return = array();
         foreach ($value as $subvalue) {
             $return[] = self::call('files_info', $field, $subvalue, $args);
         }
         $value = $return;
     }
     if (isset($args['limit'])) {
         $value = array_slice($value, 0, intval($args['limit']));
     }
     return $value;
 }
开发者ID:jesusmarket,项目名称:jesusmarket,代码行数:26,代码来源:file.php

示例2: array

 /**
  * Get the field value
  * The difference between this function and 'meta' function is 'meta' function always returns the escaped value
  * of the field saved in the database, while this function returns more meaningful value of the field
  *
  * @param  array    $field   Field parameters
  * @param  array    $args    Not used for this field
  * @param  int|null $post_id Post ID. null for current post. Optional.
  *
  * @return mixed Array(latitude, longitude, zoom)
  */
 static function get_value($field, $args = array(), $post_id = null)
 {
     $value = parent::get_value($field, $args, $post_id);
     list($latitude, $longitude, $zoom) = explode(',', $value . ',,');
     return compact('latitude', 'longitude', 'zoom');
 }
开发者ID:ksan5835,项目名称:rankproperties,代码行数:17,代码来源:map.php

示例3: array

 /**
  * Output the field value
  * Display option name instead of option value
  *
  * @use self::meta()
  *
  * @param  array    $field   Field parameters
  * @param  array    $args    Additional arguments. Rarely used. See specific fields for details
  * @param  int|null $post_id Post ID. null for current post. Optional.
  *
  * @return mixed Field value
  */
 static function the_value($field, $args = array(), $post_id = null)
 {
     $value = parent::get_value($field, $args, $post_id);
     return empty($value) ? '' : $field['options'][$value];
 }
开发者ID:ksan5835,项目名称:rankproperties,代码行数:17,代码来源:radio.php


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