當前位置: 首頁>>代碼示例>>PHP>>正文


PHP modMediaSource::initialize方法代碼示例

本文整理匯總了PHP中modMediaSource::initialize方法的典型用法代碼示例。如果您正苦於以下問題:PHP modMediaSource::initialize方法的具體用法?PHP modMediaSource::initialize怎麽用?PHP modMediaSource::initialize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在modMediaSource的用法示例。


在下文中一共展示了modMediaSource::initialize方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: process

 public function process()
 {
     // Even though we're not using media sources, it seems like the
     // easiest way to check permissions (and waste time/effort/memory)
     $this->source->initialize();
     if (!$this->source->checkPolicy('create')) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     // Prepare the upload path and check it exists
     $destination = $this->modx->getOption('core_path') . 'packages/';
     if (!is_dir($destination)) {
         return $this->failure("Packages directory doesnt appear to exist!");
         //@TODO Lexiconize
     }
     // Grab the file
     $file = array_shift($this->getProperty('files'));
     // Check MIME type of file
     if (!in_array(strtolower($file['type']), array('application/zip', 'application/x-zip-compressed', 'application/x-zip', 'application/octet-stream'))) {
         return $this->failure("1 This file does not appear to be a transport package");
         //@TODO Lexiconize
     }
     // Check valid name of file
     if (!preg_match("/.+\\.transport\\.zip\$/i", $file['name'])) {
         return $this->failure("2 This file [{$file['name']}] does not appear to be a transport package");
         //@TODO Lexiconize
     }
     // Return response
     if (move_uploaded_file($file['tmp_name'], $destination . $file['name'])) {
         return $this->success();
     } else {
         return $this->failure($this->modx->lexicon('unknown_error'));
     }
 }
開發者ID:ChrstnMgcn,項目名稱:revolution,代碼行數:33,代碼來源:upload.class.php

示例2: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     if (!$this->source->checkPolicy('create')) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $this->ensureSavePathExists($_POST['path']);
     $success = $this->source->uploadObjectsToContainer($_POST['path'], $_FILES);
     /* Check for upload errors
      * Remove 'directory already exists' error
      */
     $errors = array();
     if (empty($success)) {
         $msg = '';
         $errors = $this->source->getErrors();
         if (isset($errors['name'])) {
             unset($errors['name']);
         }
     }
     if (count($errors) > 0) {
         foreach ($errors as $k => $msg) {
             $this->modx->error->addField($k, $msg);
         }
         return $this->failure($msg);
     }
     return $this->success();
 }
開發者ID:neonoviy,項目名稱:CET_AssetsTV,代碼行數:31,代碼來源:upload.class.php

示例3: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     $list = $this->source->getObjectsInContainer($this->getProperty('dir'));
     return $this->outputArray($list);
 }
開發者ID:rosstimson,項目名稱:revolution,代碼行數:10,代碼來源:getfiles.class.php

示例4: getSource

 /**
  * @return boolean|string
  */
 public function getSource()
 {
     /** @var modMediaSource $source */
     $this->modx->loadClass('sources.modMediaSource');
     $this->source = $this->modx->getObject('modMediaSource', $_POST['sourceID']);
     if (!$this->source->getWorkingContext()) {
         return $this->modx->lexicon('permission_denied');
     }
     $this->source->setRequestProperties($this->getProperties());
     return $this->source->initialize();
 }
開發者ID:neonoviy,項目名稱:CET_AssetsTV,代碼行數:14,代碼來源:remove.class.php

示例5: getSource

 /**
  * @return boolean|string
  */
 public function getSource()
 {
     $source = $this->getProperty('source', 1);
     /** @var modMediaSource $source */
     $this->modx->loadClass('sources.modMediaSource');
     $this->source = modMediaSource::getDefaultSource($this->modx, $source);
     if (!$this->source->getWorkingContext()) {
         return $this->modx->lexicon('permission_denied');
     }
     $this->source->setRequestProperties($this->getProperties());
     return $this->source->initialize();
 }
開發者ID:ChrstnMgcn,項目名稱:revolution,代碼行數:15,代碼來源:update.class.php

示例6: prepareSource

 /**
  * @param string $ctx
  *
  * @return bool
  */
 public function prepareSource($ctx = 'web')
 {
     if ($this->mediaSource) {
         $this->mediaSource->errors = array();
         return $this->mediaSource;
     } elseif ($this->mediaSource = $this->xpdo->getObject('sources.modMediaSource', $this->get('source'))) {
         $this->mediaSource->set('ctx', $ctx);
         $this->mediaSource->initialize();
         return $this->mediaSource;
     }
     return false;
 }
開發者ID:bendasvadim,項目名稱:modx-uploadify,代碼行數:17,代碼來源:ufile.class.php

示例7: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->modx->toJSON(array());
     }
     if (!$this->source->checkPolicy('list')) {
         return $this->modx->toJSON(array());
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     $list = $this->source->getContainerList($this->getProperty('dir'));
     return $this->modx->toJSON($list);
 }
開發者ID:ChrstnMgcn,項目名稱:revolution,代碼行數:13,代碼來源:getlist.class.php

示例8: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     $fields = $this->getProperties();
     if (!$this->validate($fields)) {
         return $this->failure();
     }
     $response = $this->source->renameContainer($fields['path'], $fields['name']);
     return $this->handleResponse($response);
 }
開發者ID:rosstimson,項目名稱:revolution,代碼行數:14,代碼來源:rename.class.php

示例9: getSource

 /**
  * Get the source to load the paths from
  * 
  * @param int $sourceId
  * @return modMediaSource|modFileMediaSource
  */
 public function getSource($sourceId)
 {
     /** @var modMediaSource|modWebDAVMediaSource $source */
     $this->modx->loadClass('sources.modMediaSource');
     $this->source = modMediaSource::getDefaultSource($this->modx, $sourceId, false);
     if (empty($this->source)) {
         return false;
     }
     if (!$this->source->getWorkingContext()) {
         return false;
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     return $this->source;
 }
開發者ID:Burick,項目名稱:modx-WebDAV,代碼行數:21,代碼來源:proxy.class.php

示例10: process

 public function process()
 {
     $tv = $_POST['tv_id'];
     $resId = $_POST['resource_id'];
     $page = $this->modx->getObject('modResource', $resId);
     $tvvalue = $page->getTVValue($tv);
     $nowTVarray = json_decode($tvvalue, true);
     if (!$this->getSource()) {
         return $this->modx->toJSON(array());
     }
     if (!$this->source->checkPolicy('list')) {
         return $this->modx->toJSON(array());
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     $list = $this->source->getContainerList($this->getProperty('dir'));
     foreach ($list as $file) {
         if ('.' != $file && '..' != $file && '.DS_Store' != $file && '.htaccess' != $file && is_dir($storeFolder . $file) != true) {
             //If there is no file in TV, it was uploaded another way. Let it be in the end of the list.
             $obj['index'] = '9999';
             foreach ($nowTVarray as $key => $value) {
                 if ($key == $file['text']) {
                     $obj['index'] = $value['index'];
                 }
             }
             //Define picture size
             $path_info = pathinfo($file['url']);
             $extension = strtolower($path_info['extension']);
             if ($extension == 'jpg' || $extension == 'png' || $extension == 'gif' || $extension == 'jpeg') {
                 list($width, $height, $type, $attr) = getimagesize($file['path']);
                 $obj['width'] = $width;
                 $obj['height'] = $height;
             }
             $obj['name'] = $file['text'];
             $obj['url'] = $file['url'];
             $obj['obj'] = $file;
             $obj['ext'] = $path_info['extension'];
             $obj['size'] = filesize($file['path']);
             $result[] = $obj;
         }
     }
     foreach ($result as $key => $row) {
         $index[$key] = $row['index'];
         $name[$key] = $row['name'];
     }
     array_multisort($index, SORT_ASC, $name, SORT_ASC, $result);
     return $this->modx->toJSON($result);
 }
開發者ID:neonoviy,項目名稱:CET_AssetsTV,代碼行數:48,代碼來源:getlist.class.php

示例11: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     $success = $this->source->createContainer($this->getProperty('name'), $this->getProperty('parent'));
     if (empty($success)) {
         $msg = '';
         $errors = $this->source->getErrors();
         foreach ($errors as $k => $msg) {
             $this->modx->error->addField($k, $msg);
         }
         return $this->failure($msg);
     }
     return $this->success();
 }
開發者ID:rosstimson,項目名稱:revolution,代碼行數:18,代碼來源:create.class.php

示例12: process

 public function process()
 {
     if (!$this->getSource()) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $allowedFileTypes = $this->getProperty('allowedFileTypes');
     if (empty($allowedFileTypes)) {
         // Prevent overriding media source configuration
         unset($this->properties['allowedFileTypes']);
     }
     $this->source->setRequestProperties($this->getProperties());
     $this->source->initialize();
     if (!$this->source->checkPolicy('list')) {
         return $this->failure($this->modx->lexicon('permission_denied'));
     }
     $list = $this->source->getObjectsInContainer($this->getProperty('dir'));
     return $this->outputArray($list);
 }
開發者ID:ChrstnMgcn,項目名稱:revolution,代碼行數:18,代碼來源:getfiles.class.php

示例13: initializeMediaSource

 /**
  * @param string $ctx
  * @param $source
  *
  * @return bool|null|object
  */
 public function initializeMediaSource($ctx = '', $source)
 {
     if ($this->mediaSource = $this->modx->getObject('sources.modMediaSource', $source)) {
         $this->mediaSource->set('ctx', $ctx);
         $this->mediaSource->initialize();
         return $this->mediaSource;
     } else {
         return false;
     }
 }
開發者ID:arkadiy-vl,項目名稱:ms2Gallery,代碼行數:16,代碼來源:ms2gallery.class.php

示例14: initialize

 /**
  * {@inheritDoc}
  * @return boolean
  */
 public function initialize()
 {
     parent::initialize();
     $options = array();
     if (!$this->ctx) {
         $this->ctx =& $this->xpdo->context;
     }
     $options['context'] = $this->ctx->get('key');
     $this->fileHandler = $this->xpdo->getService('fileHandler', 'modFileHandler', '', $options);
     return true;
 }
開發者ID:rosstimson,項目名稱:revolution,代碼行數:15,代碼來源:modfilemediasource.class.php

示例15: initialize

 /**
  * Initialize the source
  * @return boolean
  */
 public function initialize()
 {
     $ok = parent::initialize();
     if ($ok !== true) {
         return $ok;
     }
     if (!$this->ctx) {
         $this->ctx =& $this->xpdo->context;
     }
     $this->ctx->prepare();
     $this->_properties = $this->getPropertyList();
     return true;
 }
開發者ID:bendasvadim,項目名稱:modx-Dropbox,代碼行數:17,代碼來源:dropboxmediasource.class.php


注:本文中的modMediaSource::initialize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。