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


PHP Varien_File_Uploader::setFilesDispersion方法代码示例

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


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

示例1: saveAction

 public function saveAction()
 {
     $data = $this->getRequest()->getPost();
     if (isset($_FILES['bannerimage']['name']) and file_exists($_FILES['bannerimage']['tmp_name'])) {
         try {
             $uploader = new Varien_File_Uploader('bannerimage');
             $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
             // or pdf or anything
             $uploader->setAllowRenameFiles(false);
             // setAllowRenameFiles(true) -> move your file in a folder the magento way
             // setAllowRenameFiles(true) -> move your file directly in the $path folder
             $uploader->setFilesDispersion(false);
             $path = Mage::getBaseDir('media') . DS . 'footer_banner' . DS;
             $uploader->save($path, $_FILES['bannerimage']['name']);
             if ($data['position'] == 'left') {
                 $imgPath = $path . $_FILES['bannerimage']['name'];
                 $imageObj = new Varien_Image($imgPath);
                 $imageObj->constrainOnly(TRUE);
                 $imageObj->keepAspectRatio(TRUE);
                 $imageObj->resize(466, 521);
                 $imageObj->save($imgPath);
             } else {
                 $imgPath = $path . $_FILES['bannerimage']['name'];
                 $imageObj = new Varien_Image($imgPath);
                 $imageObj->constrainOnly(TRUE);
                 $imageObj->keepAspectRatio(TRUE);
                 $imageObj->resize(269, 258);
                 $imageObj->save($imgPath);
             }
             $data['bannerimage'] = $_FILES['bannerimage']['name'];
             $file_nm = str_replace(" ", "_", $_FILES['bannerimage']['name']);
             $imgPath = Mage::getBaseUrl('media') . "footer_banner/" . $file_nm;
             $data['filethumbgrid'] = '<img src="' . $imgPath . '" border="0" width="75" height="75" />';
         } catch (Exception $e) {
         }
     }
     $banner_id = $this->getRequest()->getParam('id');
     if ($banner_id) {
         $resource = Mage::getSingleton('core/resource');
         $write = $resource->getConnection('core_write');
         if ($file_nm) {
             $file = "bannerimage = '" . $file_nm . "',";
         } else {
             $file = '';
         }
         if ($data['filethumbgrid']) {
             $img_filed = "filethumbgrid='" . $data['filethumbgrid'] . "', ";
         } else {
             $img_filed = '';
         }
         $sql = "UPDATE banner SET block_id='" . $data['block_id'] . "'," . $file . $img_filed . "gender='" . $data['gender'] . "',link='" . $data['link'] . "',image_text='" . $data['image_text'] . "',position='" . $data['position'] . "' " . "WHERE banner_id = '" . $banner_id . "'";
         $write->query($sql);
         $message = 'Banner Settings updated !!';
     } else {
         Mage::getModel('banner/banner')->setBlockId($data['block_id'])->setBannerimage($file_nm)->setFilethumbgrid($data['filethumbgrid'])->setGender($data['gender'])->setImageText($data['image_text'])->setLink($data['link'])->setBanner_type('1')->setPosition($data['position'])->save();
         $message = 'Banner Settings saved !!';
     }
     Mage::getSingleton('adminhtml/session')->addSuccess($message);
     $this->_redirect('*/*/index');
 }
开发者ID:rajarshc,项目名称:Rooja,代码行数:60,代码来源:BannerfooterController.php

示例2: upload

 public function upload($optionId, $optionLabel, $productId)
 {
     $fieldName = 'image_' . $optionId;
     if (empty($_FILES[$fieldName]['name'])) {
         return $this;
     }
     $optionLabel = preg_replace('/[^A-Za-z0-9_\\-]/', '_', $optionLabel);
     $imageName = $productId . '_' . $optionId . '_' . $optionLabel;
     $imageName .= '_' . time();
     // give unique names here
     $imageName .= '.' . strtolower(substr(strrchr($_FILES[$fieldName]['name'], '.'), 1));
     //upload an icon file
     $uploader = new Varien_File_Uploader($fieldName);
     $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
     $uploader->setAllowRenameFiles(false);
     $uploader->setFilesDispersion(false);
     $uploader->save($this->_imagePath, $imageName);
     $thumbSizes = Mage::helper('adjicon')->getThumbsSizes();
     foreach ($thumbSizes as $thumbSize) {
         $this->resize($imageName, $thumbSize);
     }
     // store new values in DB
     $this->setOptionId($optionId);
     $this->setProductId($productId);
     $this->setFile($imageName);
     $this->save();
 }
开发者ID:ravitechrlabs,项目名称:em,代码行数:27,代码来源:Image.php

示例3: upload

 public function upload($attributeId, $attributeOptionInfo)
 {
     $fieldName = 'option_' . $attributeOptionInfo['option_id'];
     if (empty($_FILES[$fieldName]['name'])) {
         return $this;
     }
     // create a human readable name
     $iconName = $attributeId . '_' . $attributeOptionInfo['option_id'] . '_';
     // for better debug/maintenance
     $iconName .= preg_replace('/[^a-z0-9]+/', '', strtolower($attributeOptionInfo['value']));
     $iconName .= '_' . rand(0, 99);
     // to prevent browser cache
     $iconName .= '.' . strtolower(substr(strrchr($_FILES[$fieldName]['name'], '.'), 1));
     // keep original extension
     //upload an icon file
     $uploader = new Varien_File_Uploader($fieldName);
     $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
     $uploader->setAllowRenameFiles(false);
     $uploader->setFilesDispersion(false);
     $uploader->save($this->_iconPath, $iconName);
     // create and save thumbnail
     $this->makeThumb($iconName);
     // store new values in DB
     $oldFile = $this->getFilename();
     if ($oldFile) {
         @unlink($this->_iconPath . $oldFile);
         @unlink($this->_iconPath . 'l_' . $oldFile);
         @unlink($this->_iconPath . 'pl_' . $oldFile);
         @unlink($this->_iconPath . 'v_' . $oldFile);
         @unlink($this->_iconPath . 'o_' . $oldFile);
     }
     $this->setOptionId($attributeOptionInfo['option_id']);
     $this->setFilename($iconName);
     $this->save();
 }
开发者ID:ravitechrlabs,项目名称:em,代码行数:35,代码来源:Icon.php

示例4: uploadAction

 /**
  * Upload file controller action
  */
 public function uploadAction()
 {
     $type = $this->getRequest()->getParam('type');
     $tmpPath = '';
     if ($type == 'samples') {
         $tmpPath = Mage_Downloadable_Model_Sample::getBaseTmpPath();
     } elseif ($type == 'links') {
         $tmpPath = Mage_Downloadable_Model_Link::getBaseTmpPath();
     } elseif ($type == 'link_samples') {
         $tmpPath = Mage_Downloadable_Model_Link::getBaseSampleTmpPath();
     }
     $result = array();
     try {
         $uploader = new Varien_File_Uploader($type);
         $uploader->setAllowRenameFiles(true);
         $uploader->setFilesDispersion(true);
         $result = $uploader->save($tmpPath);
         if (isset($result['file'])) {
             $fullPath = rtrim($tmpPath, DS) . DS . ltrim($result['file'], DS);
             Mage::helper('core/file_storage_database')->saveFile($fullPath);
         }
         $result['cookie'] = array('name' => session_name(), 'value' => $this->_getSession()->getSessionId(), 'lifetime' => $this->_getSession()->getCookieLifetime(), 'path' => $this->_getSession()->getCookiePath(), 'domain' => $this->_getSession()->getCookieDomain());
     } catch (Exception $e) {
         $result = array('error' => $e->getMessage(), 'errorcode' => $e->getCode());
     }
     $this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
 }
开发者ID:votanlean,项目名称:Magento-Pruebas,代码行数:30,代码来源:FileController.php

示例5: afterSave

 /**
  * Save uploaded file and set its name to entity
  *
  * @param Goodahead_Etm_Model_Entity $object
  * @return void
  */
 public function afterSave($object)
 {
     parent::afterSave($object);
     $value = $object->getData($this->getAttribute()->getName());
     if (is_array($value) && !empty($value['delete'])) {
         $object->setData($this->getAttribute()->getName(), '');
         $this->getAttribute()->getEntity()->saveAttribute($object, $this->getAttribute()->getName());
         return $this;
     }
     $path = Mage::getBaseDir('media') . DS . 'goodahead' . DS . 'etm' . DS . 'images' . DS . $object->getEntityTypeInstance()->getEntityTypeCode() . DS . $this->getAttribute()->getAttributeCode() . DS;
     try {
         $uploader = new Varien_File_Uploader($this->getAttribute()->getName());
         $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
         $uploader->setAllowRenameFiles(true);
         $uploader->setAllowCreateFolders(true);
         $uploader->setFilesDispersion(true);
         $uploader->save($path);
         $object->setData($this->getAttribute()->getName(), $uploader->getUploadedFileName());
         $this->getAttribute()->getEntity()->saveAttribute($object, $this->getAttribute()->getName());
     } catch (Exception $e) {
         if ($e->getCode() != Varien_File_Uploader::TMP_NAME_EMPTY) {
             Mage::logException($e);
         }
         /** @TODO ??? */
         return $this;
     }
     return $this;
 }
开发者ID:eniuz,项目名称:entitytype-manager,代码行数:34,代码来源:Image.php

示例6: uploadFile

 public function uploadFile(&$someField, $code)
 {
     $multiple = is_array($_FILES['to_upload']['error']);
     for ($i = 0; $i < sizeof($_FILES['to_upload']['error']); $i++) {
         $error = $multiple ? $_FILES['to_upload']['error'][$i] : $_FILES['to_upload']['error'];
         if ($error == UPLOAD_ERR_OK) {
             try {
                 $fileName = $multiple ? $_FILES['to_upload']['name'][$i] : $_FILES['to_upload']['name'];
                 $fileName = Mage::helper('amorderattach/upload')->cleanFileName($fileName);
                 $uploader = new Varien_File_Uploader($multiple ? "to_upload[{$i}]" : 'to_upload');
                 $uploader->setFilesDispersion(false);
                 $fileDestination = Mage::helper('amorderattach/upload')->getUploadDir();
                 if (file_exists($fileDestination . $fileName)) {
                     $fileName = uniqid(date('ihs')) . $fileName;
                 }
                 $uploader->save($fileDestination, $fileName);
             } catch (Exception $e) {
                 $this->addException($e, Mage::helper('amorderattach')->__('An error occurred while saving the file: ') . $e->getMessage());
             }
             if ('file' == Mage::app()->getRequest()->getPost('type')) {
                 $someField->setData($code, $fileName);
             }
             if ('file_multiple' == Mage::app()->getRequest()->getPost('type')) {
                 $fieldData = $someField->getData($code);
                 $fieldData = explode(';', $someField->getData($code));
                 $fieldData[] = $fileName;
                 $fieldData = implode(';', $fieldData);
                 $someField->setData($code, $fieldData);
             }
         }
     }
 }
开发者ID:CE-Webmaster,项目名称:CE-Hub,代码行数:32,代码来源:Upload.php

示例7: _uploadSwatches

 protected function _uploadSwatches()
 {
     $thePath = Mage::getBaseDir('media') . DS . 'colorselectorplus' . DS . 'swatches' . DS;
     $deleteMe = Mage::app()->getRequest()->getPost('colorselectorplus_swatch_delete');
     if ($deleteMe) {
         foreach ($deleteMe as $optionId => $delete) {
             if ($delete) {
                 @unlink($thePath . $optionId . '.jpg');
             }
         }
     }
     if (isset($_FILES['colorselectorplus_swatch']) && isset($_FILES['colorselectorplus_swatch']['error'])) {
         foreach ($_FILES['colorselectorplus_swatch']['error'] as $optionId => $error) {
             try {
                 $uploader = new Varien_File_Uploader('colorselectorplus_swatch[' . $optionId . ']');
                 $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
                 $uploader->setAllowRenameFiles(false);
                 $uploader->setFilesDispersion(false);
                 $uploader->save($thePath, $optionId . '.jpg');
             } catch (Exception $e) {
                 Mage::getSingleton('adminhtml/session')->addError($this->__($e->getMessage()));
             }
         }
     }
 }
开发者ID:shebin512,项目名称:Magento_Zoff,代码行数:25,代码来源:Swatches.php

示例8: saveCustomerMlmData

 public function saveCustomerMlmData(Varien_Event_Observer $observer)
 {
     $customer = $observer->getEvent()->getCustomer();
     $customerId = $customer->getId();
     $referrerId = Mage::app()->getRequest()->getPost('magemlm_referrer');
     // load magemlm / customer model
     $customerMagemlm = Mage::getModel('magemlm/customer')->load($customerId, 'customer_id');
     if (isset($_FILES['magemlm_customer_picture']['name']) and file_exists($_FILES['magemlm_customer_picture']['tmp_name'])) {
         try {
             $ext = pathinfo($_FILES['magemlm_customer_picture']['name'], PATHINFO_EXTENSION);
             $uploader = new Varien_File_Uploader('magemlm_customer_picture');
             $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
             // or pdf or anything
             $uploader->setAllowRenameFiles(false);
             $uploader->setFilesDispersion(false);
             $path = Mage::getBaseDir('media') . DS . 'magemlm' . DS;
             $fileName = $customer->getId() . '_' . date('Ymdhis') . '.' . $ext;
             $uploader->save($path, $fileName);
             // save file
             $customerMagemlm->setCustomerId($customerId);
             $customerMagemlm->setReffererId($referrerId);
             $customerMagemlm->setMagemlmImage($fileName);
             $customerMagemlm->save();
         } catch (Exception $e) {
         }
     } else {
         $customerMagemlm->setCustomerId($customerId);
         $customerMagemlm->setReferrerId($referrerId);
         $customerMagemlm->save();
     }
 }
开发者ID:ofermax,项目名称:magemlm,代码行数:31,代码来源:Observer.php

示例9: createpostAction

 public function createpostAction()
 {
     if ($this->getRequest()->getPost()) {
         try {
             $data = $this->getRequest()->getParams();
             //echo '<pre>'; var_dump($data); echo '</pre>'; exit;
             if (isset($_FILES['image']['name']) && file_exists($_FILES['image']['tmp_name'])) {
                 $uploader = new Varien_File_Uploader('image');
                 $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
                 $uploader->setAllowRenameFiles(false);
                 $uploader->setFilesDispersion(false);
                 $path = Mage::getBaseDir('media') . DS . 'magiccart' . DS . 'testimonial' . DS;
                 $uploader->save($path, $_FILES['image']['name']);
                 $data['image'] = 'magiccart/testimonial/' . $_FILES['image']['name'];
             }
             $autoApprove = Mage::helper('testimonial')->getGeneralCfg('autoApprove');
             if ($autoApprove) {
                 $data['status'] = Mage_Review_Model_Review::STATUS_APPROVED;
             }
             $model = Mage::getModel('testimonial/testimonial');
             $model->setData($data)->save();
             Mage::getModel('core/session')->addSuccess(Mage::helper('adminhtml')->__('Testimonial successfully submitted for admin approval.'));
             $this->_redirect('*/*');
         } catch (Exception $e) {
             Mage::getModel('core/session')->addError($e->getMessage());
             $this->_redirect('*/*');
             //return;
         }
     }
 }
开发者ID:uibar,项目名称:laviniailies2,代码行数:30,代码来源:IndexController.php

示例10: changebackgroundAction

 public function changebackgroundAction()
 {
     $filename = '';
     if (isset($_FILES['change-background']['name']) && $_FILES['change-background']['name'] != '') {
         try {
             /* Starting upload */
             $uploader = new Varien_File_Uploader('change-background');
             // Any extention would work
             $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
             $uploader->setAllowRenameFiles(false);
             // Set the file upload mode
             // false -> get the file directly in the specified folder
             // true -> get the file in the product like folders
             //    (file.jpg will go in something like /media/f/i/file.jpg)
             $uploader->setFilesDispersion(false);
             // We set media as the upload dir
             $path = Mage::getBaseDir('media') . DS . 'magestore' . DS . 'pdfinvoiceplus' . DS . 'background';
             $result = $uploader->save($path, $_FILES['change-background']['name']);
             $filename = $result['file'];
             $this->getResponse()->setBody(Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . 'magestore/pdfinvoiceplus/background/' . $filename);
         } catch (Exception $e) {
             $filename = $_FILES['change-background']['name'];
         }
     }
 }
开发者ID:cabrerabywaters,项目名称:magentoSunshine,代码行数:25,代码来源:IndexController.php

示例11: UploadImage

 public function UploadImage()
 {
     $data = array();
     $vendorPost = Mage::app()->getRequest()->getParam('vendor');
     if (isset($_FILES['vendor']['name'])) {
         foreach ($_FILES['vendor']['name'] as $fieldName => $value) {
             if (isset($_FILES['vendor']['name'][$fieldName]) && file_exists($_FILES['vendor']['tmp_name'][$fieldName])) {
                 $uploader = new Varien_File_Uploader("vendor[{$fieldName}]");
                 $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
                 // or pdf or anything
                 $uploader->setAllowRenameFiles(false);
                 $uploader->setFilesDispersion(false);
                 $path = Mage::getBaseDir('media') . DS . 'ced' . DS . 'csmaketplace' . DS . 'vendor' . DS;
                 $extension = pathinfo($_FILES['vendor']['name'][$fieldName], PATHINFO_EXTENSION);
                 $fileName = $fieldName . time() . '.' . $extension;
                 $uploader->save($path, $fileName);
                 $data[$fieldName] = 'ced/csmaketplace/vendor/' . $fileName;
             } else {
                 if (isset($vendorPost[$fieldName]['delete']) && $vendorPost[$fieldName]['delete'] == 1) {
                     $data[$fieldName] = '';
                     $imageName = explode('/', $vendorPost[$fieldName]['value']);
                     $imageName = $imageName[count($imageName) - 1];
                     unlink(Mage::getBaseDir('media') . DS . 'ced' . DS . 'csmaketplace' . DS . 'vendor' . DS . $imageName);
                 } else {
                     unset($data[$fieldName]);
                 }
             }
         }
     }
     return $data;
 }
开发者ID:sixg,项目名称:mkAnagh,代码行数:31,代码来源:Image.php

示例12: saveImage

 function saveImage($imageType, $_attributeId, $_optionId)
 {
     $imagekey = "{$imageType}-{$_attributeId}-{$_optionId}";
     if (isset($_FILES[$imagekey]['error']) && $_FILES[$imagekey]['error'] == 0) {
         try {
             /* Starting upload */
             $uploader = new Varien_File_Uploader($imagekey);
             $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
             $uploader->setAllowRenameFiles(false);
             $uploader->setFilesDispersion(false);
             $path = Mage::getBaseDir('media') . DS . 'colorswatch' . DS . 'image' . DS . $imageType . DS . $_attributeId . DS . $_optionId . DS;
             if (!is_writable(Mage::getBaseDir('media'))) {
                 throw new Exception('Magento Color Swatch extension is not able to write images in your ' . Mage::getBaseDir('media') . " directory.");
             }
             if ($uploader->save($path, $_FILES[$imagekey]['name'])) {
                 /* start clear cache */
                 foreach (glob($path . '*') as $cachePath) {
                     if (is_dir($cachePath) && is_file($cachePath . DS . $this->getData($imageType))) {
                         unlink($cachePath . DS . $this->getData($imageType));
                     }
                 }
                 /* end clear cache */
                 $this->setData($imageType, $_FILES[$imagekey]['name']);
             } else {
                 throw new Exception("Varien_File_Uploader class not upload image correct, please check your GD setting");
             }
         } catch (Exception $e) {
             Mage::getSingleton('adminhtml/session')->addError(" {$e->getMessage()}");
             return false;
         }
     }
     return $this;
 }
开发者ID:rcclaudrey,项目名称:dev,代码行数:33,代码来源:Images.php

示例13: saveAction

 public function saveAction()
 {
     if ($data = $this->getRequest()->getPost()) {
         if ($data['filename']['delete'] == "1") {
             $path = Mage::getBaseDir('media') . DS . $data['filename']['value'];
             $data['filename'] = null;
             if (file_exists($path)) {
                 @unlink($path);
             }
         }
         if ($data['filename']['delete'] != "1") {
             $data['filename'] = $data['filename']['value'];
         }
         if (isset($_FILES['filename']['name']) && $_FILES['filename']['name'] != '') {
             try {
                 /* Starting upload */
                 $uploader = new Varien_File_Uploader('filename');
                 // Any extention would work
                 $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
                 $uploader->setAllowRenameFiles(false);
                 // Set the file upload mode
                 // false -> get the file directly in the specified folder
                 // true -> get the file in the product like folders
                 //	(file.jpg will go in something like /media/f/i/file.jpg)
                 $uploader->setFilesDispersion(false);
                 // We set media as the upload dir
                 $path = Mage::getBaseDir('media') . DS;
                 $uploader->save($path, $_FILES['filename']['name']);
                 $data['filename'] = $_FILES['filename']['name'];
             } catch (Exception $e) {
             }
             //this way the name is saved in DB
         }
         $model = Mage::getModel('ourstory/staff');
         $model->setData($data)->setId($this->getRequest()->getParam('id'));
         try {
             if ($model->getCreatedTime == NULL || $model->getUpdateTime() == NULL) {
                 $model->setCreatedTime(now())->setUpdateTime(now());
             } else {
                 $model->setUpdateTime(now());
             }
             $model->save();
             Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('ourstory')->__('Staff was successfully saved'));
             Mage::getSingleton('adminhtml/session')->setFormData(false);
             if ($this->getRequest()->getParam('back')) {
                 $this->_redirect('*/*/edit', array('id' => $model->getId()));
                 return;
             }
             $this->_redirect('*/*/');
             return;
         } catch (Exception $e) {
             Mage::getSingleton('adminhtml/session')->addError($e->getMessage());
             Mage::getSingleton('adminhtml/session')->setFormData($data);
             $this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
             return;
         }
     }
     Mage::getSingleton('adminhtml/session')->addError(Mage::helper('ourstory')->__('Unable to find staff to save'));
     $this->_redirect('*/*/');
 }
开发者ID:buttasg,项目名称:cowgirlk,代码行数:60,代码来源:StaffController.php

示例14: postAction

 public function postAction()
 {
     if (!empty($_FILES)) {
         $type = 'file';
         if (isset($_FILES[$type]['name']) && $_FILES[$type]['name'] != '') {
             try {
                 $uploadsDir = Mage::getBaseDir('upload');
                 $uploader = new Varien_File_Uploader($type);
                 $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
                 $uploader->setAllowRenameFiles(true);
                 $uploader->setFilesDispersion(true);
                 $path = Mage::getBaseDir('media') . DS . 'upload';
                 if (!is_dir($path)) {
                     mkdir($path, 0777, true);
                 }
                 $uploader->save($path, $_FILES[$type]['name']);
                 $filename = $uploader->getUploadedFileName();
                 $md5 = md5($filename);
                 $owner = Mage::getSingleton('customer/session')->getCustomerId() ? Mage::getSingleton('customer/session')->getCustomerId() : Mage::getSingleton('customer/session')->getSessionId();
                 Mage::getModel('xxx_catalog/upload')->setMd5($md5)->setFilename($filename)->setOwner($owner)->save();
                 $varienImage = new Varien_Image($uploadsDir . $filename);
                 $width = $varienImage->getOriginalWidth();
                 $height = $varienImage->getOriginalHeight();
                 $data = ['id' => $md5, 'width' => $width, 'height' => $height];
                 echo json_encode($data);
                 die;
             } catch (Exception $e) {
                 Mage::log($e->getMessage(), null, $this->_logFile);
                 echo json_encode(['error' => $this->__($e->getMessage())]);
             }
         }
     }
     $this->getResponse()->setRedirect(Mage::getUrl('*/*/index'));
 }
开发者ID:mkutyba,项目名称:sample-magento-code,代码行数:34,代码来源:UploadController.php

示例15: uploadimageAction

 public function uploadimageAction()
 {
     if (isset($_FILES['image']['name']) && $_FILES['image']['name'] != '') {
         try {
             $userid = Mage::app()->getRequest()->getParam('user_id');
             $order_id = Mage::app()->getRequest()->getParam('order_id');
             $image_id = Mage::app()->getRequest()->getParam('image_num');
             $uploader = new Varien_File_Uploader('image');
             $uploader->setAllowedExtensions(array('jpg', 'jpeg', 'gif', 'png'));
             $uploader->setAllowRenameFiles(false);
             $uploader->setFilesDispersion(false);
             $path = Mage::getBaseDir('media') . DS . 'surgery' . DS . 'retouched' . DS;
             // $path = Mage::getBaseDir('media') . DS . 'logo' . DS;
             $extension = explode(".", $_FILES['image']['name']);
             end($extension);
             $imagename = $userid . '_' . $this->generate_random_string() . '.' . end($extension);
             $uploader->save($path, $imagename);
             $this->save_in_db($userid, $imagename, $image_id);
             //echo Mage::helper("adminhtml")->getUrl("adminhtml/order/photomanager/",array("order"=>$order_id));exit;
             $this->send_notification($userid, $order_id);
             $this->_redirectUrl(Mage::helper("adminhtml")->getUrl("adminhtml/order/photomanager/", array("order" => $order_id)));
         } catch (Exception $e) {
             echo $e->getMessage();
         }
     }
 }
开发者ID:radovandodic,项目名称:portreitsurgery,代码行数:26,代码来源:OrderController.php


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