當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。