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


PHP modMediaSource::updateObject方法代码示例

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


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

示例1: process

 public function process()
 {
     /* get base paths and sanitize incoming paths */
     $filePath = rawurldecode($this->getProperty('file', ''));
     $loaded = $this->getSource();
     if (!$this->source instanceof modMediaSource) {
         return $loaded;
     }
     $path = $this->source->updateObject($filePath, $this->getProperty('content'));
     if (empty($path)) {
         $msg = '';
         $errors = $this->source->getErrors();
         foreach ($errors as $k => $msg) {
             $this->addFieldError($k, $msg);
         }
         return $this->failure($msg);
     }
     return $this->success('', array('file' => $path));
 }
开发者ID:rosstimson,项目名称:revolution,代码行数:19,代码来源:update.class.php

示例2: Resize

 /**
  * @param array $options
  * @param null $raw
  *
  * @return bool|string
  */
 public function Resize(array $options, $raw = null)
 {
     if ($this->get('type') != 'image') {
         return false;
     } elseif (!($raw = $this->_phpThumb($options, $raw))) {
         return false;
     }
     $filename = $this->get('path') . $this->get('file');
     if ($this->prepareSource()) {
         $this->mediaSource->updateObject($filename, $raw);
         if (empty($this->mediaSource->errors['file'])) {
             $this->set('size', strlen($raw));
             $this->save();
             return $this->mediaSource->getObjectUrl($filename);
         } else {
             $this->xpdo->log(modX::LOG_LEVEL_ERROR, "Could not update file {$filename}: " . $this->mediaSource->errors['file']);
         }
     }
     return false;
 }
开发者ID:bendasvadim,项目名称:modx-uploadify,代码行数:26,代码来源:ufile.class.php


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