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


PHP Control::prepareUserValue方法代码示例

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


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

示例1: prepareUserValue

 public function prepareUserValue($value, $getValue = null)
 {
     if (empty($value)) {
         $value = null;
     }
     return parent::prepareUserValue($value, $getValue);
 }
开发者ID:deadem,项目名称:djem,代码行数:7,代码来源:Date.php

示例2: prepareUserValue

 public function prepareUserValue($value, $getValue = null)
 {
     if (empty($this->images) || empty($this->imageSaveHandler)) {
         return parent::prepareUserValue($value, $getValue);
     }
     $value = preg_replace_callback('/(<img.*?src=\\s*([\'"]))(.*?)(\\2)/is', function ($matches) use($getValue) {
         if (preg_match('/^blob:http.*?#(.+)$/i', $matches[3], $urls)) {
             $relation = call_user_func($getValue->relation, $this->images);
             $file = $this->normalizeImageExtension($this->getFilePath($urls[1]));
             $value = call_user_func($this->imageSaveHandler, ['file' => $file], $relation->getRelated(), $getValue);
             if ($value) {
                 $this->relatedData[] = ['relation' => $relation, 'value' => $value];
                 return $matches[1] . htmlentities($value->url) . $matches[4];
             }
         }
         return $matches[0];
     }, $value);
     parent::prepareUserValue($value, $getValue);
 }
开发者ID:deadem,项目名称:djem,代码行数:19,代码来源:RichText.php

示例3: prepareUserValue

 public function prepareUserValue($value, $getValue = null)
 {
     if (is_array($value)) {
         $value = array_shift($value);
     }
     if (empty($value)) {
         foreach ($this->copy as $field) {
             $parentValue = call_user_func($getValue->field, $field);
             if (is_array($parentValue)) {
                 $parentValue = array_shift($parentValue);
             }
             if (!empty($parentValue) && isset($parentValue['file'])) {
                 $value = $parentValue;
                 break;
             }
         }
     }
     if (!empty($value)) {
         if (isset($value['file'])) {
             // если указан файл - это новая картинка, загружаем
             $value['file'] = $this->normalizeImageExtension($this->getFilePath($value['file']));
             foreach ($this->images as $image) {
                 $image->setUserValue($this->prepareUserSaveValue($value, $image->getName(), $getValue));
             }
             return parent::prepareUserValue($value, $getValue);
         }
         // если файл не указан, значит нужно обновить данные уже подцепленной картинки
         foreach ($this->images as $image) {
             $relation = call_user_func($getValue->relation, $image->getName());
             $image->setUserValue($relation->first());
         }
         $relation = call_user_func($getValue->relation, $this->getName());
         return $this->setUserValue($relation->first());
     }
     return $this;
 }
开发者ID:deadem,项目名称:djem,代码行数:36,代码来源:Image.php


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