本文整理汇总了PHP中XoopsMediaUploader类的典型用法代码示例。如果您正苦于以下问题:PHP XoopsMediaUploader类的具体用法?PHP XoopsMediaUploader怎么用?PHP XoopsMediaUploader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了XoopsMediaUploader类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: formulaire_upload
/**
* Gestion de l'upload
*/
function formulaire_upload($indice, $dstpath, $destname, $permittedtypes, $maxUploadSize)
{
// global $destname;
//$permittedtypes = array("image/gif","image/pjpeg","image/jpeg","image/x-png") ;
$permittedtypes = $allowed_mimetypes;
if (isset($_POST['xoops_upload_file'])) {
include_once XOOPS_ROOT_PATH . '/class/uploader.php';
if (isset($_FILES[$_POST['xoops_upload_file'][$indice]])) {
$fldname = $_FILES[$_POST['xoops_upload_file'][$indice]];
$fldname = get_magic_quotes_gpc() ? stripslashes($fldname['name']) : $fldname['name'];
if (xoops_trim($fldname != '')) {
$uploader = new XoopsMediaUploader($dstpath, $permittedtypes, $maxUploadSize);
if ($uploader->fetchMedia($_POST['xoops_upload_file'][$indice])) {
if ($uploader->upload()) {
return true;
} else {
echo _ERRORS . ' ' . $uploader->getErrors();
echo "indice :" . $indice . "<br> dstpath :" . $dstpath . "<br> destname :" . $destname . " - " . $uploadDestName . "<br> permittedtypes :" . $permittedtypes[0] . "-" . $permittedtypes[1] . "-" . $permittedtypes[2] . "-" . $permittedtypes[3] . "<br>Max upload file:" . $maxUploadSize;
exit;
}
} else {
echo $uploader->getErrors();
}
}
}
}
return false;
}
示例2: genobio_uploading
function genobio_uploading($uploaddir = "uploads", $allowed_mimetypes = '', $redirecturl = "index.php", $num = 0, $redirect = 0, $usertype = 1, $index = 0)
{
global $_FILES, $xoopsConfig, $xoopsModuleConfig, $xoopsModule;
$down = array();
include_once XOOPS_ROOT_PATH . "/modules/genobio/class/uploader.php";
$upload_dir = XOOPS_ROOT_PATH . "/" . $uploaddir . "/";
genobio_makeWritable($upload_dir);
$maxfilesize = isset($xoopsModuleConfig['maxfilesize']) ? $xoopsModuleConfig['maxfilesize'] : 10000000000.0;
$maxfilewidth = isset($xoopsModuleConfig['maximgwidth']) ? $xoopsModuleConfig['maximgwidth'] : 5000;
$maxfileheight = isset($xoopsModuleConfig['maximgheight']) ? $xoopsModuleConfig['maximgheight'] : 5000;
$uploader = new XoopsMediaUploader($upload_dir, $allowed_mimetypes, $maxfilesize, $maxfilewidth, $maxfileheight);
$uploader->setPrefix('img_' . time());
$uploader->noAdminSizeCheck(1);
if ($uploader->fetchMedia($_POST['xoops_upload_file'][$num])) {
if (!$uploader->upload()) {
$down['error'] = $uploader->getErrors();
return $down;
} else {
if ($redirect) {
redirect_header($redirecturl, 1, _AM_PDD_UPLOADFILE);
} else {
if (is_file($uploader->savedDestination)) {
$down['path'] = "/" . $uploaddir . "/" . strtolower($uploader->savedFileName);
$down['size'] = filesize(XOOPS_ROOT_PATH . "/" . $uploaddir . "/" . strtolower($uploader->savedFileName));
}
return $down;
}
}
} else {
$down['error'] = $uploader->getErrors();
return $down;
}
}
示例3: publisher_pagewrap_upload
/**
* @param $errors
*
* @return bool
*/
function publisher_pagewrap_upload(&$errors)
{
// include_once PUBLISHER_ROOT_PATH . '/class/uploader.php';
xoops_load('XoopsMediaUploader');
$publisher =& PublisherPublisher::getInstance();
$postField = 'fileupload';
$maxFileSize = $publisher->getConfig('maximum_filesize');
$maxImageWidth = $publisher->getConfig('maximum_image_width');
$maxImageHeight = $publisher->getConfig('maximum_image_height');
if (!is_dir(publisherGetUploadDir(true, 'content'))) {
mkdir(publisherGetUploadDir(true, 'content'), 0757);
}
$allowedMimeTypes = array('text/html', 'text/plain', 'application/xhtml+xml');
$uploader = new XoopsMediaUploader(publisherGetUploadDir(true, 'content') . '/', $allowedMimeTypes, $maxFileSize, $maxImageWidth, $maxImageHeight);
if ($uploader->fetchMedia($postField)) {
$uploader->setTargetFileName($uploader->getMediaName());
if ($uploader->upload()) {
return true;
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
}
示例4: publisher_pagewrap_upload
function publisher_pagewrap_upload(&$errors)
{
$publisher = Publisher::getInstance();
$post_field = 'fileupload';
$max_size = $publisher->getConfig('maximum_filesize');
$max_imgwidth = $publisher->getConfig('maximum_image_width');
$max_imgheight = $publisher->getConfig('maximum_image_height');
if (!is_dir(PublisherUtils::getUploadDir(true, 'content'))) {
mkdir(PublisherUtils::getUploadDir(true, 'content'), 0757);
}
$allowed_mimetypes = array('text/html', 'text/plain', 'application/xhtml+xml');
$uploader = new XoopsMediaUploader(PublisherUtils::getUploadDir(true, 'content') . '/', $allowed_mimetypes, $max_size, $max_imgwidth, $max_imgheight);
if ($uploader->fetchMedia($post_field)) {
$uploader->setTargetFileName($uploader->getMediaName());
if ($uploader->upload()) {
return true;
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
}
示例5: smartsection_pagewrap_upload
function smartsection_pagewrap_upload(&$errors)
{
include_once SMARTSECTION_ROOT_PATH . "class/uploader.php";
global $xoopsUser, $xoopsDB, $xoopsModule, $xoopsModule, $xoopsModuleConfig;
include_once SMARTSECTION_ROOT_PATH . 'class/uploader.php';
$config =& smartsection_getModuleConfig();
$post_field = 'fileupload';
//$allowed_mimetypes = '';
// TODO : this needs to be managed by the MimeType section but we need a new parameter for allowed mimetype for pagewrap
/* if(!isset($allowed_mimetypes)){
$hMime =& xoops_getmodulehandler('mimetype');
$allowed_mimetypes = $hMime->checkMimeTypes($post_field);
if(!$allowed_mimetypes){
$errors[] = _SMARTSECTION_MESSAGE_WRONG_MIMETYPE;
return false;
}
}*/
/*$maxfilesize = $config['xhelp_uploadSize'];
$maxfilewidth = $config['xhelp_uploadWidth'];
$maxfileheight = $config['xhelp_uploadHeight'];*/
$max_size = $xoopsModuleConfig['maximum_filesize'];
$max_imgwidth = $xoopsModuleConfig['maximum_image_width'];
$max_imgheight = $xoopsModuleConfig['maximum_image_height'];
if (!is_dir(smartsection_getUploadDir(true, 'content'))) {
mkdir(smartsection_getUploadDir(true, 'content'), 0757);
}
$allowed_mimetypes = array('text/html', 'text/plain', 'application/xhtml+xml');
$uploader = new XoopsMediaUploader(smartsection_getUploadDir(true, 'content') . '/', $allowed_mimetypes, $max_size, $max_imgwidth, $max_imgheight);
if ($uploader->fetchMedia($post_field)) {
$uploader->setTargetFileName($uploader->getMediaName());
if ($uploader->upload()) {
return true;
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
}
示例6: createFile
function createFile($eventId)
{
$userId = $GLOBALS['xoopsUser'] ? $GLOBALS['xoopsUser']->getVar('uid') : 0;
$allowedMimeType = array();
$mimeType = (include XOOPS_ROOT_PATH . '/class/mimetypes.inc.php');
foreach ($GLOBALS['xoopsModuleConfig']['allowed_file_extention'] as $fileExt) {
$allowedMimeType[] = $mimeType[$fileExt];
}
$uploader = new XoopsMediaUploader(XOOPS_ROOT_PATH . '/uploads/extcal', $allowedMimeType, 3145728);
$uploader->setPrefix($userId . '-' . $eventId . '_');
if ($uploader->fetchMedia('event_file')) {
if (!$uploader->upload()) {
return false;
}
} else {
return false;
}
$data = array('file_name' => $uploader->getSavedFileName(), 'file_nicename' => $uploader->getMediaName(), 'file_mimetype' => $uploader->getMediaType(), 'file_size' => $_FILES['event_file']['size'], 'file_date' => time(), 'file_approved' => 1, 'event_id' => $eventId, 'uid' => $userId);
$file = $this->create();
$file->setVars($data);
return $this->insert($file);
}
示例7: smartclient_getAllowedMimeTypes
// Uploading the logo, if any
// Retreive the filename to be uploaded
if ($_FILES['logo_file']['name'] != "") {
$filename = $_POST["xoops_upload_file"][0];
if (!empty($filename) || $filename != "") {
global $xoopsModuleConfig;
$max_size = 10000000;
$max_imgwidth = $xoopsModuleConfig['img_max_width'];
$max_imgheight = $xoopsModuleConfig['img_max_height'];
$allowed_mimetypes = smartclient_getAllowedMimeTypes();
include_once XOOPS_ROOT_PATH . "/class/uploader.php";
if ($_FILES[$filename]['tmp_name'] == "" || !is_readable($_FILES[$filename]['tmp_name'])) {
redirect_header('javascript:history.go(-1)', 2, _CO_SCLIENT_FILE_UPLOAD_ERROR);
exit;
}
$uploader = new XoopsMediaUploader(smartclient_getImageDir(), $allowed_mimetypes, $max_size, $max_imgwidth, $max_imgheight);
// TODO : prefix the image file with the clientid, but for that we need to first save the client to get clientid...
// $uploader->setTargetFileName($clientObj->clientid() . "_" . $_FILES['logo_file']['name']);
if ($uploader->fetchMedia($filename) && $uploader->upload()) {
$clientObj->setVar('image', $uploader->getSavedFileName());
} else {
redirect_header('javascript:history.go(-1)', 2, _CO_SCLIENT_FILE_UPLOAD_ERROR . $uploader->getErrors());
exit;
}
}
} else {
$clientObj->setVar('image', $_POST['image']);
}
// Putting the values in the client object
$clientObj->setVar('id', isset($_POST['id']) ? intval($_POST['id']) : 0);
$clientObj->setVar('status', isset($_POST['status']) ? intval($_POST['status']) : 0);
示例8: redirect_header
redirect_header('index.php', 3, _US_NOEDITRIGHT . '<br>' . implode('<br>', $GLOBALS['xoopsSecurity']->getErrors()));
}
$xoops_upload_file = array();
$uid = 0;
if (!empty($_POST['xoops_upload_file']) && is_array($_POST['xoops_upload_file'])) {
$xoops_upload_file = $_POST['xoops_upload_file'];
}
if (!empty($_POST['uid'])) {
$uid = (int) $_POST['uid'];
}
if (empty($uid) || $xoopsUser->getVar('uid') != $uid) {
redirect_header('index.php', 3, _US_NOEDITRIGHT);
}
if ($xoopsConfigUser['avatar_allow_upload'] == 1 && $xoopsUser->getVar('posts') >= $xoopsConfigUser['avatar_minposts']) {
include_once $GLOBALS['xoops']->path('class/uploader.php');
$uploader = new XoopsMediaUploader(XOOPS_UPLOAD_PATH . '/avatars', array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/x-png', 'image/png'), $xoopsConfigUser['avatar_maxsize'], $xoopsConfigUser['avatar_width'], $xoopsConfigUser['avatar_height']);
if ($uploader->fetchMedia($_POST['xoops_upload_file'][0])) {
$uploader->setPrefix('cavt');
if ($uploader->upload()) {
$avt_handler = xoops_getHandler('avatar');
$avatar = $avt_handler->create();
$avatar->setVar('avatar_file', 'avatars/' . $uploader->getSavedFileName());
$avatar->setVar('avatar_name', $xoopsUser->getVar('uname'));
$avatar->setVar('avatar_mimetype', $uploader->getMediaType());
$avatar->setVar('avatar_display', 1);
$avatar->setVar('avatar_type', 'C');
if (!$avt_handler->insert($avatar)) {
@unlink($uploader->getSavedDestination());
} else {
$oldavatar = $xoopsUser->getVar('user_avatar');
if (!empty($oldavatar) && false !== strpos(strtolower($oldavatar), 'cavt')) {
示例9: xoops_gethandler
$gperm_handler =& xoops_gethandler('groupperm');
$admin = $gperm_handler->checkRight('system_admin', XOOPS_SYSTEM_SMILE, $groups);
$op = '';
if (!empty($_GET['op'])) {
$op = trim($_GET['op']);
} elseif (!empty($_POST['op'])) {
$op = trim($_POST['op']);
}
$myts =& MyTextSanitizer::getInstance();
if ($admin && $op == 'SmilesAdd') {
if (!$GLOBALS['xoopsSecurity']->check()) {
redirect_header($current_file, 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors()));
}
$db =& XoopsDatabaseFactory::getDatabaseConnection();
include_once XOOPS_ROOT_PATH . '/class/uploader.php';
$uploader = new XoopsMediaUploader(XOOPS_UPLOAD_PATH, array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/x-png', 'image/png'), 100000, 120, 120);
$uploader->setPrefix('smil');
if ($uploader->fetchMedia($_POST['xoops_upload_file'][0])) {
if (!$uploader->upload()) {
$err = $uploader->getErrors();
} else {
$smile_url = $uploader->getSavedFileName();
$smile_code = $myts->stripSlashesGPC($_POST['smile_code']);
$smile_desc = $myts->stripSlashesGPC($_POST['smile_desc']);
$smile_display = intval($_POST['smile_display']) > 0 ? 1 : 0;
$newid = $db->genId($db->prefix('smilies') . "_id_seq");
$sql = sprintf("INSERT INTO %s (id, code, smile_url, emotion, display) VALUES (%d, %s, %s, %s, %d)", $db->prefix('smiles'), $newid, $db->quoteString($smile_code), $db->quoteString($smile_url), $db->quoteString($smile_desc), $smile_display);
if (!$db->query($sql)) {
$err = 'Failed storing smiley data into the database';
}
}
示例10: addTopic
function addTopic()
{
global $xoopsDB, $xoopsModule, $xoopsModuleConfig;
$topicpid = isset($_POST['topic_pid']) ? intval($_POST['topic_pid']) : 0;
$xt = new AmsTopic($xoopsDB->prefix("ams_topics"));
if (!$xt->topicExists($topicpid, $_POST['topic_title'])) {
$xt->setTopicPid($topicpid);
if (empty($_POST['topic_title']) || trim($_POST['topic_title']) == '') {
redirect_header("index.php?op=topicsmanager", 2, _AMS_AM_ERRORTOPICNAME);
}
$xt->setTopicTitle($_POST['topic_title']);
if (isset($_POST['topic_imgurl']) && $_POST['topic_imgurl'] != "") {
$xt->setTopicImgurl($_POST['topic_imgurl']);
}
if (isset($_POST['xoops_upload_file'])) {
$fldname = $_FILES[$_POST['xoops_upload_file'][0]];
$fldname = get_magic_quotes_gpc() ? stripslashes($fldname['name']) : $fldname['name'];
if (trim($fldname != '')) {
$sfiles = new sFiles();
$dstpath = XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->dirname() . '/images/topics';
$destname = $sfiles->createUploadName($dstpath, $fldname, true);
$permittedtypes = array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/x-png', 'image/png');
$uploader = new XoopsMediaUploader($dstpath, $permittedtypes, $xoopsModuleConfig['maxuploadsize']);
$uploader->setTargetFileName($destname);
if ($uploader->fetchMedia($_POST['xoops_upload_file'][0])) {
if ($uploader->upload()) {
$xt->setTopicImgurl(basename($destname));
} else {
echo _AMS_AM_UPLOAD_ERROR;
}
} else {
echo $uploader->getErrors();
}
}
}
$xt->banner_inherit = isset($_POST['banner_inherit']) ? 1 : 0;
$xt->banner = $_POST['banner'];
$xt->forum_id = isset($_POST['forum_id']) ? intval($_POST['forum_id']) : 0;
if ($xt->store()) {
//This will set default audience
global $xoopsModule;
$allTopics = $xt->getAllTopics();
$totaltopics = count($allTopics);
if ($totaltopics = 1) {
//Make sure xoopsModule is AMS.
if (!isset($xoopsModule) || $xoopsModule->getVar('dirname') != "AMS") {
$mod_handler =& xoops_gethandler('module');
$amsModule =& $mod_handler->getByDirname('AMS');
} else {
$amsModule =& $xoopsModule;
}
// Check audience, and set default value if not yet exist
if (!ams_isaudiencesetup($amsModule->getVar('mid'))) {
$gperm_handler =& xoops_gethandler('groupperm');
$member_handler =& xoops_gethandler('member');
$group_id_ref =& $member_handler->getGroups(null, true);
//insert all groups into default audience
foreach (array_keys($group_id_ref) as $i) {
$gperm_handler->addRight("ams_audience", 1, intval($group_id_ref[$i]->getVar('groupid')), intval($amsModule->getVar('mid')));
}
}
}
//Added in AMS 2.50 Final. Use News 1.62 permission style
// Permissions
$gperm_handler =& xoops_gethandler('groupperm');
if (isset($_POST['groups_AMS_can_approve'])) {
foreach ($_POST['groups_AMS_can_approve'] as $onegroup_id) {
$gperm_handler->addRight('ams_approve', $xt->topic_id(), $onegroup_id, $xoopsModule->getVar('mid'));
}
}
if (isset($_POST['groups_AMS_can_submit'])) {
foreach ($_POST['groups_AMS_can_submit'] as $onegroup_id) {
$gperm_handler->addRight('ams_submit', $xt->topic_id(), $onegroup_id, $xoopsModule->getVar('mid'));
}
}
if (isset($_POST['groups_AMS_can_view'])) {
foreach ($_POST['groups_AMS_can_view'] as $onegroup_id) {
$gperm_handler->addRight('ams_view', $xt->topic_id(), $onegroup_id, $xoopsModule->getVar('mid'));
}
}
AMS_updateCache();
$notification_handler =& xoops_gethandler('notification');
$tags = array();
$tags['TOPIC_NAME'] = $_POST['topic_title'];
$notification_handler->triggerEvent('global', 0, 'new_category', $tags);
redirect_header('index.php?op=topicsmanager', 1, _AMS_AM_DBUPDATED);
exit;
}
} else {
redirect_header('index.php?op=topicsmanager', 2, _AMS_AM_ADD_TOPIC_ERROR);
exit;
}
}
示例11: storeUpload
/**
* @param string $post_field
* @param array $allowed_mimetypes
* @param array $errors
*
* @return bool
*/
public function storeUpload($post_field, $allowed_mimetypes = array(), &$errors)
{
$itemid = $this->getVar('itemid');
if (empty($allowed_mimetypes)) {
$allowed_mimetypes = $this->publisher->getMimetypeHandler()->getArrayByType();
}
$maxfilesize = $this->publisher->getConfig('maximum_filesize');
$maxfilewidth = $this->publisher->getConfig('maximum_image_width');
$maxfileheight = $this->publisher->getConfig('maximum_image_height');
if (!is_dir(PublisherUtils::getUploadDir())) {
mkdir(PublisherUtils::getUploadDir(), 0757);
}
$uploader = new XoopsMediaUploader(PublisherUtils::getUploadDir() . '/', $allowed_mimetypes, $maxfilesize, $maxfilewidth, $maxfileheight);
if ($uploader->fetchMedia($post_field)) {
$uploader->setTargetFileName($itemid . "_" . $uploader->getMediaName());
if ($uploader->upload()) {
$this->setVar('filename', $uploader->getSavedFileName());
if ($this->getVar('name') == '') {
$this->setVar('name', $this->getNameFromFilename());
}
$this->setVar('mimetype', $uploader->getMediaType());
return true;
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
} else {
$errors = array_merge($errors, $uploader->getErrors(false));
return false;
}
}
示例12: foreach
} else {
$greenep_obj =& $greenep_handler->create();
}
foreach (array_keys($greenep_obj->vars) as $key) {
if (isset($_POST[$key])) {
$greenep_obj->setVar($key, $_POST[$key]);
}
}
if (!empty($_POST["xoops_upload_file"])) {
include_once XOOPS_ROOT_PATH . "/class/uploader.php";
$logo_dir = XOOPS_ROOT_PATH . "/uploads/";
$allowed_mimetypes = array('image/gif', 'image/jpeg', 'image/jpg', 'image/png');
$maxfilesize = 500000;
$maxfilewidth = 2200;
$maxfileheight = 2200;
$uploader = new XoopsMediaUploader($logo_dir, $allowed_mimetypes, $maxfilesize, $maxfilewidth, $maxfileheight);
if ($uploader->fetchMedia('greenep_logo')) {
$uploader->setPrefix('greenep_');
if (!$uploader->upload()) {
echo $uploader->getErrors();
} else {
$greenep_obj->setVar('greenep_logo', $uploader->getSavedFileName());
if (!empty($greenep_logo)) {
unlink(str_replace("\\", "/", realpath($logo_dir . $greenep_logo)));
}
}
}
}
if ($greenep_handler->insert($greenep_obj)) {
redirect_header('admin.greenep.php', 3, _AM_CATALOG_ACTIVSUCCESS);
} else {
示例13: ss_getAllowedImagesTypes
// Uploading the image, if any
// Retreive the filename to be uploaded
if ($_FILES['image_file']['name'] != "") {
$filename = $_POST["xoops_upload_file"][0];
if (!empty($filename) || $filename != "") {
global $xoopsModuleConfig;
$max_size = 10000000;
$max_imgwidth = 800;
$max_imgheight = 800;
$allowed_mimetypes = ss_getAllowedImagesTypes();
include_once XOOPS_ROOT_PATH . "/class/uploader.php";
if ($_FILES[$filename]['tmp_name'] == "" || !is_readable($_FILES[$filename]['tmp_name'])) {
redirect_header('javascript:history.go(-1)', 2, _AM_SS_FILEUPLOAD_ERROR);
exit;
}
$uploader = new XoopsMediaUploader(ss_getImageDir('item'), $allowed_mimetypes, $max_size, $max_imgwidth, $max_imgheight);
if ($uploader->fetchMedia($filename) && $uploader->upload()) {
$itemObj->setVar('image', $uploader->getSavedFileName());
} else {
redirect_header('javascript:history.go(-1)', 2, _AM_SS_FILEUPLOAD_ERROR . $uploader->getErrors());
exit;
}
}
} else {
$itemObj->setVar('image', $_POST['image']);
}
//$itemObj->setVar('status', (isset($_POST['status'])) ? intval($_POST['status']) : _SS_STATUS_NOTSET);
$old_status = $itemObj->status();
$new_status = isset($_POST['status']) ? intval($_POST['status']) : _SS_STATUS_NOTSET;
$itemObj->setVar('uid', isset($_POST['uid']) ? intval($_POST['uid']) : 0);
$itemObj->setVar('datesub', isset($_POST['datesub']) ? strtotime($_POST['datesub']['date']) + $_POST['datesub']['time'] : date());
示例14: redirect_header
exit;
}
}
redirect_header('admin.php?fct=images', 2, _MD_AM_DBUPDATED);
}
if ($op == 'addfile') {
if (!$GLOBALS['xoopsSecurity']->check()) {
redirect_header('admin.php?fct=images', 3, implode('<br />', $GLOBALS['xoopsSecurity']->getErrors()));
}
$imgcat_handler =& xoops_gethandler('imagecategory');
$imagecategory =& $imgcat_handler->get(intval($imgcat_id));
if (!is_object($imagecategory)) {
redirect_header('admin.php?fct=images', 1);
}
include_once XOOPS_ROOT_PATH . '/class/uploader.php';
$uploader = new XoopsMediaUploader(XOOPS_UPLOAD_PATH, array('image/gif', 'image/jpeg', 'image/pjpeg', 'image/x-png', 'image/png', 'image/bmp'), $imagecategory->getVar('imgcat_maxsize'), $imagecategory->getVar('imgcat_maxwidth'), $imagecategory->getVar('imgcat_maxheight'));
$uploader->setPrefix('img');
$err = array();
$ucount = count($_POST['xoops_upload_file']);
for ($i = 0; $i < $ucount; $i++) {
if ($uploader->fetchMedia($_POST['xoops_upload_file'][$i])) {
if (!$uploader->upload()) {
$err[] = $uploader->getErrors();
} else {
$image_handler =& xoops_gethandler('image');
$image =& $image_handler->create();
$image->setVar('image_name', $uploader->getSavedFileName());
$image->setVar('image_nicename', $image_nicename);
$image->setVar('image_mimetype', $uploader->getMediaType());
$image->setVar('image_created', time());
$image_display = empty($image_display) ? 0 : 1;
示例15: implode
$admin_page->renderButton();
$xoops->tpl()->assign('info_msg', $xoops->alert('info', $info_msg, XoopsLocale::INFORMATION_FOR_UPLOADS));
// Create form
$obj = $avatar_Handler->get(Request::getInt('avatar_id', 0));
$form = $xoops->getModuleForm($obj, 'avatar');
// Assign form
$xoops->tpl()->assign('form', $form->render());
break;
// Save
// Save
case "save":
// Check security
if (!$xoops->security()->check()) {
$xoops->redirect('avatar_custom.php', 3, implode('<br />', $xoops->security()->getErrors()));
}
$uploader_avatars_img = new XoopsMediaUploader($xoops_upload_path . '/avatars', $mimetypes, $upload_size, $width, $height);
// Get avatar id
$avatar_id = Request::getInt('avatar_id', 0);
if ($avatar_id > 0) {
$obj = $avatar_Handler->get($avatar_id);
} else {
$obj = $avatar_Handler->create();
}
$error_msg = '';
$obj->setVars($_POST);
if (preg_match('/^\\d+$/', $_POST["avatar_weight"]) == false) {
$error_msg .= XoopsLocale::E_YOU_NEED_A_POSITIVE_INTEGER . '<br />';
$obj->setVar("avatar_weight", 0);
} else {
$obj->setVar("avatar_weight", Request::getInt('avatar_weight', 0));
}