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


PHP oledrion_utils::uploadFile方法代码示例

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


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

示例1: basename

         if ($res2 !== false) {
             echo $res2;
         }
     }
 } else {
     // Il faut créer la vignette pour l'utilisateur
     $indiceAttached = 1;
     if (xoops_trim($mainPicture) != '') {
         $thumbName = OLEDRION_THUMBS_PREFIX . $mainPicture;
         oledrion_utils::resizePicture(OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $mainPicture, OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $thumbName, oledrion_utils::getModuleOption('thumbs_width'), oledrion_utils::getModuleOption('thumbs_height'), true);
         $item->setVar('product_thumb_url', $thumbName);
     }
 }
 // Téléchargement du fichier attaché
 $destname = '';
 $res3 = oledrion_utils::uploadFile($indiceAttached, OLEDRION_ATTACHED_FILES_PATH);
 if ($res3 === true) {
     $item->setVar('product_attachment', basename($destname));
 } else {
     if ($res3 !== false) {
         echo $res3;
     }
 }
 $res = $h_oledrion_products->insert($item);
 if ($res) {
     if (oledrion_utils::getModuleOption('use_tags')) {
         $tag_handler = xoops_getmodulehandler('tag', 'tag');
         $tag_handler->updateByItem($_POST['item_tag'], $item->getVar('product_id'), $xoopsModule->getVar('dirname'), 0);
     }
     $id = $item->getVar('product_id');
     // Notifications ******************************************************
开发者ID:osw17,项目名称:oledrion,代码行数:31,代码来源:products.php

示例2: basename

         oledrion_utils::redirect(_AM_OLEDRION_NOT_FOUND, $baseurl, 5);
     }
     $item->unsetNew();
 } else {
     $item = $h_oledrion_manufacturer->create(true);
 }
 $opRedirect = 'manufacturers';
 $item->setVars($_POST);
 for ($i = 1; $i <= 5; $i++) {
     if (isset($_POST['delpicture' . $i]) && intval($_POST['delpicture' . $i]) == 1) {
         $item->deletePicture($i);
     }
 }
 // Upload des fichiers
 for ($i = 1; $i <= 5; $i++) {
     $res1 = oledrion_utils::uploadFile($i - 1, OLEDRION_PICTURES_PATH);
     if ($res1 === true) {
         if (oledrion_utils::getModuleOption('resize_others')) {
             // Eventuellement on redimensionne l'image
             oledrion_utils::resizePicture(OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $destname, OLEDRION_PICTURES_PATH . DIRECTORY_SEPARATOR . $destname, oledrion_utils::getModuleOption('images_width'), oledrion_utils::getModuleOption('images_height'), true);
         }
         $item->setVar('manu_photo' . $i, basename($destname));
     } else {
         if ($res1 !== false) {
             echo $res1;
         }
     }
 }
 $res = $h_oledrion_manufacturer->insert($item);
 if ($res) {
     oledrion_utils::updateCache();
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:31,代码来源:manufacturers.php

示例3: xoops_cp_header

 // ****************************************************************************************************************
 xoops_cp_header();
 $id = isset($_POST['file_id']) ? intval($_POST['file_id']) : 0;
 if (!empty($id)) {
     $edit = true;
     $item = $h_oledrion_files->get($id);
     if (!is_object($item)) {
         oledrion_utils::redirect(_AM_OLEDRION_NOT_FOUND, $baseurl, 5);
     }
     $item->unsetNew();
 } else {
     $item = $h_oledrion_files->create(true);
 }
 $item->setVars($_POST);
 $destname = '';
 $result = oledrion_utils::uploadFile(0, OLEDRION_ATTACHED_FILES_PATH);
 if ($result === true) {
     $item->setVar('file_filename', basename($destname));
     $item->setVar('file_mimetype', oledrion_utils::getMimeType(OLEDRION_ATTACHED_FILES_PATH . DIRECTORY_SEPARATOR . $destname));
 } else {
     if ($result !== false) {
         oledrion_utils::redirect(_AM_OLEDRION_SAVE_PB . '<br />' . $result, $baseurl . '?op=' . $opRedirect, 5);
     }
 }
 $res = $h_oledrion_files->insert($item);
 if ($res) {
     oledrion_utils::updateCache();
     oledrion_utils::redirect(_AM_OLEDRION_SAVE_OK, $baseurl . '?op=' . $opRedirect, 2);
 } else {
     oledrion_utils::redirect(_AM_OLEDRION_SAVE_PB, $baseurl . '?op=' . $opRedirect, 5);
 }
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:31,代码来源:files.php


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