本文整理汇总了PHP中nggAdmin类的典型用法代码示例。如果您正苦于以下问题:PHP nggAdmin类的具体用法?PHP nggAdmin怎么用?PHP nggAdmin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了nggAdmin类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ngg_convert_filestructure
/**
* ngg_convert_filestructure() - converter for old thumnail folder structure
*
* @return void
*/
function ngg_convert_filestructure()
{
global $wpdb;
$gallerylist = $wpdb->get_results("SELECT * FROM {$wpdb->nggallery} ORDER BY gid ASC", OBJECT_K);
if (is_array($gallerylist)) {
$errors = array();
foreach ($gallerylist as $gallery) {
$gallerypath = ABSPATH . $gallery->path;
// old mygallery check, convert the wrong folder/ file name now
if (@is_dir($gallerypath . '/tumbs')) {
if (!@rename($gallerypath . '/tumbs', $gallerypath . '/thumbs')) {
$errors[] = $gallery->path . '/thumbs';
}
// read list of images
$imageslist = nggAdmin::scandir($gallerypath . '/thumbs');
if (!empty($imageslist)) {
foreach ($imageslist as $image) {
$purename = substr($image, 4);
if (!@rename($gallerypath . '/thumbs/' . $image, $gallerypath . '/thumbs/thumbs_' . $purename)) {
$errors[] = $gallery->path . '/thumbs/thumbs_' . $purename;
}
}
}
}
}
if (!empty($errors)) {
echo "<div class='error_inline'><p>" . __('Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section.', 'nggallery') . "</p>";
foreach ($errors as $value) {
echo __('Rename failed', 'nggallery') . ' : <strong>' . $value . "</strong><br />\n";
}
echo '</div>';
}
}
}
示例2: _save_entity
function _save_entity($entity)
{
// If successfully saved, then import metadata and
$retval = $this->call_parent('_save_entity', $entity);
if ($retval) {
include_once NGGALLERY_ABSPATH . '/admin/functions.php';
$image_id = $this->get_id($entity);
nggAdmin::import_MetaData($image_id);
C_Photocrati_Cache::flush();
}
return $retval;
}
示例3: _save_entity
function _save_entity($entity)
{
// If successfully saved, then import metadata and
$retval = $this->call_parent('_save_entity', $entity);
if ($retval) {
include_once NGGALLERY_ABSPATH . '/admin/functions.php';
$image_id = $this->get_id($entity);
if (!isset($entity->meta_data['saved'])) {
nggAdmin::import_MetaData($image_id);
}
C_Photocrati_Cache::flush('displayed_gallery_rendering');
}
return $retval;
}
示例4: ngg_ajax_operation
function ngg_ajax_operation()
{
global $wpdb;
// if nonce is not correct it returns -1
check_ajax_referer("ngg-ajax");
// check for correct capability
if (!is_user_logged_in()) {
die('-1');
}
// check for correct NextGEN capability
if (!current_user_can('NextGEN Upload images') || !current_user_can('NextGEN Manage gallery')) {
die('-1');
}
// include the ngg function
include_once dirname(__FILE__) . '/functions.php';
// Get the image id
if (isset($_POST['image'])) {
$id = (int) $_POST['image'];
// let's get the image data
$picture = nggdb::find_image($id);
// what do you want to do ?
switch ($_POST['operation']) {
case 'create_thumbnail':
$result = nggAdmin::create_thumbnail($picture);
break;
case 'resize_image':
$result = nggAdmin::resize_image($picture);
break;
case 'set_watermark':
$result = nggAdmin::set_watermark($picture);
break;
default:
die('-1');
break;
}
// A success should retun a '1'
die($result);
}
// The script should never stop here
die('0');
}
示例5: swfupload_image
/**
* Upload function will be called via the Flash uploader
*
* @class nggAdmin
* @param integer $galleryID
* @return string $result
*/
static function swfupload_image($galleryID = 0)
{
global $nggdb;
if ($galleryID == 0) {
return __('No gallery selected !', 'nggallery');
}
// WPMU action
if (nggWPMU::check_quota()) {
return '0';
}
// Check the upload
if (!isset($_FILES['Filedata']) || !is_uploaded_file($_FILES['Filedata']['tmp_name']) || $_FILES['Filedata']['error'] != 0) {
return __('Invalid upload. Error Code : ', 'nggallery') . $_FILES['Filedata']['error'];
}
// get the filename and extension
$temp_file = $_FILES['Filedata']['tmp_name'];
$filepart = nggGallery::fileinfo($_FILES['Filedata']['name']);
$filename = $filepart['basename'];
// check for allowed extension
$ext = apply_filters('ngg_allowed_file_types', array('jpeg', 'jpg', 'png', 'gif'));
if (!in_array(strtolower($filepart['extension']), $ext)) {
return esc_html($_FILES[$key]['name']) . __('is no valid image file!', 'nggallery');
}
// get the path to the gallery
$gallery = $nggdb->find_gallery((int) $galleryID);
if (empty($gallery->path)) {
@unlink($temp_file);
return __('Failure in database, no gallery path set !', 'nggallery');
}
// read list of images
$imageslist = nggAdmin::scandir(WINABSPATH . $gallery->path);
// check if this filename already exist
$i = 0;
while (in_array($filename, $imageslist)) {
$filename = $filepart['filename'] . '_' . $i++ . '.' . $filepart['extension'];
}
$dest_file = WINABSPATH . $gallery->path . '/' . $filename;
// save temp file to gallery
if (!@move_uploaded_file($_FILES["Filedata"]['tmp_name'], $dest_file)) {
nggAdmin::check_safemode(WINABSPATH . $gallery->path);
return __('Error, the file could not be moved to : ', 'nggallery') . esc_html($dest_file);
}
if (!nggAdmin::chmod($dest_file)) {
return __('Error, the file permissions could not be set', 'nggallery');
}
return '0';
}
示例6: post_processor_images
function post_processor_images()
{
global $wpdb, $ngg, $nggdb;
// bulk update in a single gallery
if (isset($_POST['bulkaction']) && isset($_POST['doaction'])) {
check_admin_referer('ngg_updategallery');
switch ($_POST['bulkaction']) {
case 'no_action':
break;
case 'rotate_cw':
nggAdmin::do_ajax_operation('rotate_cw', $_POST['doaction'], __('Rotate images', 'nggallery'));
break;
case 'rotate_ccw':
nggAdmin::do_ajax_operation('rotate_ccw', $_POST['doaction'], __('Rotate images', 'nggallery'));
break;
case 'recover_images':
nggAdmin::do_ajax_operation('recover_image', $_POST['doaction'], __('Recover from backup', 'nggallery'));
break;
case 'set_watermark':
nggAdmin::do_ajax_operation('set_watermark', $_POST['doaction'], __('Set watermark', 'nggallery'));
break;
case 'delete_images':
if (is_array($_POST['doaction'])) {
foreach ($_POST['doaction'] as $imageID) {
$image = $nggdb->find_image($imageID);
if ($image) {
if ($ngg->options['deleteImg']) {
$storage = C_Gallery_Storage::get_instance();
$storage->delete_image($image->pid);
}
do_action('ngg_delete_picture', $image->pid);
$delete_pic = C_Image_Mapper::get_instance()->destroy($image->pid);
}
}
if ($delete_pic) {
nggGallery::show_message(__('Pictures deleted successfully ', 'nggallery'));
}
}
break;
case 'import_meta':
nggAdmin::do_ajax_operation('import_metadata', $_POST['doaction'], __('Import metadata', 'nggallery'));
break;
}
}
if (isset($_POST['TB_bulkaction']) && isset($_POST['TB_ResizeImages'])) {
check_admin_referer('ngg_thickbox_form');
//save the new values for the next operation
$ngg->options['imgWidth'] = (int) $_POST['imgWidth'];
$ngg->options['imgHeight'] = (int) $_POST['imgHeight'];
update_option('ngg_options', $ngg->options);
$pic_ids = explode(',', $_POST['TB_imagelist']);
nggAdmin::do_ajax_operation('resize_image', $pic_ids, __('Resize images', 'nggallery'));
}
if (isset($_POST['TB_bulkaction']) && isset($_POST['TB_NewThumbnail'])) {
check_admin_referer('ngg_thickbox_form');
// save the new values for the next operation
$settings = C_NextGen_Settings::get_instance();
$settings->thumbwidth = (int) $_POST['thumbwidth'];
$settings->thumbheight = (int) $_POST['thumbheight'];
$settings->thumbfix = isset($_POST['thumbfix']) ? TRUE : FALSE;
$settings->save();
ngg_refreshSavedSettings();
$pic_ids = explode(',', $_POST['TB_imagelist']);
nggAdmin::do_ajax_operation('create_thumbnail', $pic_ids, __('Create new thumbnails', 'nggallery'));
}
if (isset($_POST['TB_bulkaction']) && isset($_POST['TB_SelectGallery'])) {
check_admin_referer('ngg_thickbox_form');
$pic_ids = explode(',', $_POST['TB_imagelist']);
$dest_gid = (int) $_POST['dest_gid'];
switch ($_POST['TB_bulkaction']) {
case 'copy_to':
C_Gallery_Storage::get_instance()->copy_images($pic_ids, $dest_gid);
break;
case 'move_to':
C_Gallery_Storage::get_instance()->move_images($pic_ids, $dest_gid);
break;
}
}
if (isset($_POST['TB_bulkaction']) && isset($_POST['TB_EditTags'])) {
// do tags update
check_admin_referer('ngg_thickbox_form');
// get the images list
$pic_ids = explode(',', $_POST['TB_imagelist']);
$taglist = explode(',', $_POST['taglist']);
$taglist = array_map('trim', $taglist);
if (is_array($pic_ids)) {
foreach ($pic_ids as $pic_id) {
// which action should be performed ?
switch ($_POST['TB_bulkaction']) {
case 'no_action':
// No action
break;
case 'overwrite_tags':
// Overwrite tags
wp_set_object_terms($pic_id, $taglist, 'ngg_tag');
break;
case 'add_tags':
// Add / append tags
wp_set_object_terms($pic_id, $taglist, 'ngg_tag', TRUE);
break;
//.........这里部分代码省略.........
示例7: elseif
$_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
} elseif (empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie'])) {
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
}
if (empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie'])) {
$_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
}
// don't ask me why, sometimes needed, taken from wp core
unset($current_user);
// admin.php require a proper login cookie
require_once ABSPATH . '/wp-admin/admin.php';
header('Content-Type: text/plain; charset=' . get_option('blog_charset'));
//check for correct capability
if (!is_user_logged_in()) {
die('Login failure. -1');
}
//check for correct capability
if (!current_user_can('NextGEN Upload images')) {
die('You do not have permission to upload files. -2');
}
//check for correct nonce
check_admin_referer('ngg_swfupload');
//check for nggallery
if (!defined('NGGALLERY_ABSPATH')) {
die('NextGEN Gallery not available. -3');
}
include_once NGGALLERY_ABSPATH . 'admin/functions.php';
// get the gallery
$galleryID = (int) $_POST['galleryselect'];
echo nggAdmin::swfupload_image($galleryID);
示例8: show_add_Product
function show_add_Product()
{
global $wpdb, $ngg, $nggdb;
if (!empty($_POST['submit'])) {
$_POST['galleryselect'] = 1;
nggAdmin::upload_images();
//$imagefiles = $_FILES['imagefiles'];
/*
$title=$_POST['productName'];
$content=$_POST['description']."<br/>[displayPrice]";
$linkToWebSite=$_POST['linkWebSite'];
$currency=$_POST['currency'];
$price=$_POST['price'];
$Image1=$_FILES['image1'];
$Image2=$_FILES['image2'];
$Image3=$_FILES['image3'];
$Image4=$_FILES['image4'];
$postType='post';
$post = array('post_title' =>$title,'post_content' =>$content,'post_type' => $postType,'post_status' =>'publish' );
$newPostId=wp_insert_post( $post, $wp_error );
if (!empty($linkToWebSite)) add_post_meta($newPostId, 'LinkToWebsite', $linkToWebSite);
add_post_meta($newPostId, 'Price', $price, false);
add_post_meta($newPostId, 'Currency', $currency, false);
*/
//creating gallery
/*
$defaultpath = $ngg->options['gallerypath'];
$newgallery = esc_attr("Test");
nggAdmin::create_gallery($newgallery, $defaultpath);
nggAdmin::upload_images();
*/
} else {
?>
<form enctype="multipart/form-data" action="" method="POST">
Product Name: <br/><input type="text" name="productName" size="60"/><br/>
<br/>Description:<br/>
<textarea name="description" rows="10" cols="70"></textarea><br/>
<br/>
Link to Website: <br/><input type="text" name="linkWebSite" size="60"/><br/>
<br/>
Price:
<br/>
<select name="currency">
<option value="Rs.">Rs</option>
</select>
<input type="text" name="price" size="10"/>
<br/>
<br/>Upload Featured Image: <input name="imagefiles[]" type="file" /><br/>
<br/>Upload Gallery Image 1: <input name="imagefiles[]" type="file" /><br/>
<br/>Upload Gallery Image 2: <input name="imagefiles1" type="file" /><br/>
<br/>Upload Gallery Image 3: <input name="imagefiles1" type="file" /><br/>
<br/>
<br/>
<select name="category0">
<option></option>
</select>
<?php
wp_list_categories();
?>
<br/><input type="submit" name="submit" value="Add Product" />
</form>
<?php
}
return "";
}
示例9: tab_uploadimage
function tab_uploadimage()
{
global $ngg;
// check the cookie for the current setting
$checked = get_user_setting('ngg_upload_resize') ? ' checked="true"' : '';
?>
<!-- upload images -->
<h2><?php
_e('Upload Images', 'nggallery');
?>
</h2>
<form name="uploadimage" id="uploadimage_form" method="POST" enctype="multipart/form-data" action="<?php
echo $this->filepath . '#uploadimage';
?>
" accept-charset="utf-8" >
<?php
wp_nonce_field('ngg_addgallery');
?>
<table class="form-table">
<tr valign="top">
<th scope="row"><?php
_e('Upload image', 'nggallery');
?>
</th>
<?php
if ($ngg->options['swfUpload'] && defined('IS_WP_3_3')) {
?>
<td>
<div id="plupload-upload-ui">
<div>
<?php
_e('Choose files to upload');
?>
<input id="plupload-browse-button" type="button" value="<?php
esc_attr_e('Select Files');
?>
" class="button" />
</div>
<p class="ngg-dragdrop-info howto" style="display:none;" ><?php
_e('Or you can drop the files into this window.');
?>
</p>
<div id='uploadQueue'></div>
<p><label><input name="image_resize" type="checkbox" id="image_resize" value="true"<?php
echo $checked;
?>
/>
<?php
printf(__('Scale images to max width %1$dpx or max height %2$dpx', 'nggallery'), (int) $ngg->options['imgWidth'], (int) $ngg->options['imgHeight']);
?>
<div id='image_resize_pointer'> </div>
</label>
</p>
</div>
</td>
<?php
} else {
?>
<td><span id='spanButtonPlaceholder'></span><input type="file" name="imagefiles[]" id="imagefiles" size="35" class="imagefiles"/></td>
<?php
}
?>
</tr>
<tr valign="top">
<th scope="row"><?php
_e('in to', 'nggallery');
?>
</th>
<td><select name="galleryselect" id="galleryselect">
<option value="0" ><?php
_e('Choose gallery', 'nggallery');
?>
</option>
<?php
foreach ($this->gallerylist as $gallery) {
//special case : we check if a user has this cap, then we override the second cap check
if (!current_user_can('NextGEN Upload in all galleries')) {
if (!nggAdmin::can_manage_this_gallery($gallery->author)) {
continue;
}
}
$name = empty($gallery->title) ? $gallery->name : $gallery->title;
echo '<option value="' . $gallery->gid . '" >' . $gallery->gid . ' - ' . esc_attr($name) . '</option>' . "\n";
}
?>
</select>
<br /><?php
echo $this->maxsize;
?>
<br /><?php
if (is_multisite() && wpmu_enable_function('wpmuQuotaCheck')) {
display_space_usage();
}
?>
</td>
</tr>
</table>
<div class="submit">
//.........这里部分代码省略.........
示例10: copy_images
/**
* Copy images to another gallery
*/
function copy_images($pic_ids, $dest_gid)
{
$errors = $messages = '';
if (!is_array($pic_ids)) {
$pic_ids = array($pic_ids);
}
// Get destination gallery
$destination = nggdb::find_gallery($dest_gid);
if ($destination == null) {
nggGallery::show_error(__('The destination gallery does not exist', 'nggallery'));
return;
}
// Check for folder permission
if (!is_writeable(WINABSPATH . $destination->path)) {
$message = sprintf(__('Unable to write to directory %s. Is this directory writable by the server?', 'nggallery'), WINABSPATH . $destination->path);
nggGallery::show_error($message);
return;
}
// Get pictures
$images = nggdb::find_images_in_list($pic_ids);
$destination_path = WINABSPATH . $destination->path;
foreach ($images as $image) {
// WPMU action
if (nggAdmin::check_quota()) {
return;
}
$i = 0;
$tmp_prefix = '';
$destination_file_name = $image->filename;
while (file_exists($destination_path . '/' . $destination_file_name)) {
$tmp_prefix = 'copy_' . $i++ . '_';
$destination_file_name = $tmp_prefix . $image->filename;
}
$destination_file_path = $destination_path . '/' . $destination_file_name;
$destination_thumb_file_path = $destination_path . '/' . $image->thumbFolder . $image->thumbPrefix . $destination_file_name;
// Copy files
if (!@copy($image->imagePath, $destination_file_path)) {
$errors .= sprintf(__('Failed to copy image %1$s to %2$s', 'nggallery'), $image->filename, $destination_file_path) . '<br />';
continue;
}
// Copy the thumbnail if possible
!@copy($image->thumbPath, $destination_thumb_file_path);
// Create new database entry for the image
$new_pid = nggdb::insert_image($destination->gid, $destination_file_name, $image->alttext, $image->description, $image->exclude);
if (!isset($new_pid)) {
$errors .= sprintf(__('Failed to copy database row for picture %s', 'nggallery'), $image->pid) . '<br />';
continue;
}
// Copy tags
nggTags::copy_tags($image->pid, $new_pid);
if ($tmp_prefix != '') {
$messages .= sprintf(__('Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery.', 'nggallery'), $image->pid, $image->filename, $new_pid, $destination_file_name) . '<br />';
} else {
$messages .= sprintf(__('Image %1$s (%2$s) copied as image %3$s (%4$s)', 'nggallery'), $image->pid, $image->filename, $new_pid, $destination_file_name) . '<br />';
}
}
// Finish by showing errors or success
if ($errors == '') {
$link = '<a href="' . admin_url() . 'admin.php?page=nggallery-manage-gallery&mode=edit&gid=' . $destination->gid . '" >' . $destination->title . '</a>';
$messages .= '<hr />' . sprintf(__('Copied %1$s picture(s) to gallery: %2$s .', 'nggallery'), count($images), $link);
}
if ($messages != '') {
nggGallery::show_message($messages);
}
if ($errors != '') {
nggGallery::show_error($errors);
}
return;
}
示例11: import_gallery
/**
* nggAdmin::import_gallery()
* TODO: Check permission of existing thumb folder & images
*
* @class nggAdmin
* @param string $galleryfolder contains relative path to the gallery itself
* @return void
*/
static function import_gallery($galleryfolder, $gallery_id = NULL)
{
global $wpdb, $user_ID;
// get the current user ID
wp_get_current_user();
$created_msg = '';
// remove trailing slash at the end, if somebody use it
$galleryfolder = untrailingslashit($galleryfolder);
$fs = C_Fs::get_instance();
if (is_null($gallery_id)) {
$gallerypath = $fs->join_paths($fs->get_document_root('content'), $galleryfolder);
} else {
$storage = C_Gallery_Storage::get_instance();
$gallerypath = $storage->get_gallery_abspath($gallery_id);
}
if (!is_dir($gallerypath)) {
nggGallery::show_error(sprintf(__("Directory <strong>%s</strong> doesn`t exist!", 'nggallery'), esc_html($gallerypath)));
return;
}
// read list of images
$new_imageslist = nggAdmin::scandir($gallerypath);
if (empty($new_imageslist)) {
nggGallery::show_message(sprintf(__("Directory <strong>%s</strong> contains no pictures", 'nggallery'), esc_html($gallerypath)));
return;
}
// take folder name as gallery name
$galleryname = basename($galleryfolder);
$galleryname = apply_filters('ngg_gallery_name', $galleryname);
// check for existing gallery folder
if (is_null($gallery_id)) {
$gallery_id = $wpdb->get_var("SELECT gid FROM {$wpdb->nggallery} WHERE path = '{$galleryfolder}' ");
}
if (!$gallery_id) {
// now add the gallery to the database
$gallery_id = nggdb::add_gallery($galleryname, $galleryfolder, '', 0, 0, $user_ID);
if (!$gallery_id) {
nggGallery::show_error(__('Database error. Could not add gallery!', 'nggallery'));
return;
} else {
do_action('ngg_created_new_gallery', $gallery_id);
}
$created_msg = sprintf(_n("Gallery <strong>%s</strong> successfully created!", 'Galleries <strong>%s</strong> successfully created!', 1, 'nggallery'), esc_html($galleryname));
}
// Look for existing image list
$old_imageslist = $wpdb->get_col("SELECT filename FROM {$wpdb->nggpictures} WHERE galleryid = '{$gallery_id}' ");
// if no images are there, create empty array
if ($old_imageslist == NULL) {
$old_imageslist = array();
}
// check difference
$new_images = array_diff($new_imageslist, $old_imageslist);
// all images must be valid files
foreach ($new_images as $key => $picture) {
// filter function to rename/change/modify image before
$picture = apply_filters('ngg_pre_add_new_image', $picture, $gallery_id);
$new_images[$key] = $picture;
if (!@getimagesize($gallerypath . '/' . $picture)) {
unset($new_images[$key]);
@unlink($gallerypath . '/' . $picture);
}
}
// add images to database
$image_ids = nggAdmin::add_Images($gallery_id, $new_images);
do_action('ngg_after_new_images_added', $gallery_id, $image_ids);
//add the preview image if needed
nggAdmin::set_gallery_preview($gallery_id);
// now create thumbnails
nggAdmin::do_ajax_operation('create_thumbnail', $image_ids, __('Create new thumbnails', 'nggallery'));
//TODO:Message will not shown, because AJAX routine require more time, message should be passed to AJAX
$message = $created_msg . sprintf(_n('%s picture successfully added', '%s pictures successfully added', count($image_ids), 'nggallery'), count($image_ids));
$message .= ' [<a href="' . admin_url() . 'admin.php?page=nggallery-manage-gallery&mode=edit&gid=' . $gallery_id . '" >';
$message .= __('Edit gallery', 'nggallery');
$message .= '</a>]';
nggGallery::show_message($message);
return;
}
示例12: nggallery_admin_add_gallery
function nggallery_admin_add_gallery()
{
global $wpdb, $ngg;
// same as $_SERVER['REQUEST_URI'], but should work under IIS 6.0
$filepath = admin_url() . 'admin.php?page=' . $_GET['page'];
// link for the flash file
$swf_upload_link = NGGALLERY_URLPATH . 'admin/upload.php';
$swf_upload_link = wp_nonce_url($swf_upload_link, 'ngg_swfupload');
//flash doesn't seem to like encoded ampersands, so convert them back here
$swf_upload_link = str_replace('&', '&', $swf_upload_link);
$defaultpath = $ngg->options['gallerypath'];
if ($_POST['addgallery']) {
check_admin_referer('ngg_addgallery');
$newgallery = attribute_escape($_POST['galleryname']);
if (!empty($newgallery)) {
nggAdmin::create_gallery($newgallery, $defaultpath);
}
}
if ($_POST['zipupload']) {
check_admin_referer('ngg_addgallery');
if ($_FILES['zipfile']['error'] == 0) {
$messagetext = nggAdmin::import_zipfile(intval($_POST['zipgalselect']));
} else {
nggGallery::show_error(__('Upload failed!', 'nggallery'));
}
}
if ($_POST['importfolder']) {
check_admin_referer('ngg_addgallery');
$galleryfolder = $_POST['galleryfolder'];
if (!empty($galleryfolder) and $defaultpath != $galleryfolder) {
nggAdmin::import_gallery($galleryfolder);
}
}
if ($_POST['uploadimage']) {
check_admin_referer('ngg_addgallery');
if ($_FILES['MF__F_0_0']['error'] == 0) {
$messagetext = nggAdmin::upload_images();
} else {
nggGallery::show_error(__('Upload failed!', 'nggallery'));
}
}
if (isset($_POST['swf_callback'])) {
if ($_POST['galleryselect'] == "0") {
nggGallery::show_error(__('No gallery selected !', 'nggallery'));
} else {
// get the path to the gallery
$galleryID = (int) $_POST['galleryselect'];
$gallerypath = $wpdb->get_var("SELECT path FROM {$wpdb->nggallery} WHERE gid = '{$galleryID}' ");
nggAdmin::import_gallery($gallerypath);
}
}
if (isset($_POST['disable_flash'])) {
check_admin_referer('ngg_addgallery');
$ngg->options['swfUpload'] = false;
update_option('ngg_options', $ngg->options);
}
if (isset($_POST['enable_flash'])) {
check_admin_referer('ngg_addgallery');
$ngg->options['swfUpload'] = true;
update_option('ngg_options', $ngg->options);
}
//get all galleries (after we added new ones)
$gallerylist = nggdb::find_all_galleries();
?>
<?php
if ($ngg->options['swfUpload']) {
?>
<!-- SWFUpload script -->
<script type="text/javascript">
var ngg_swf_upload;
window.onload = function () {
ngg_swf_upload = new SWFUpload({
// Backend settings
upload_url : "<?php
echo $swf_upload_link;
?>
",
flash_url : "<?php
echo NGGALLERY_URLPATH;
?>
admin/js/swfupload.swf",
// Button Settings
button_placeholder_id : "spanButtonPlaceholder",
button_width: 300,
button_height: 27,
button_window_mode: SWFUpload.WINDOW_MODE.TRANSPARENT,
button_cursor: SWFUpload.CURSOR.HAND,
// File Upload Settings
file_size_limit : "<?php
echo wp_max_upload_size();
?>
b",
file_types : "*.jpg;*.gif;*.png",
file_types_description : "<?php
_e('Image Files', 'nggallery');
?>
//.........这里部分代码省略.........
示例13: tab_uploadimage
function tab_uploadimage()
{
global $ngg;
?>
<!-- upload images -->
<h2><?php
_e('Upload Images', 'nggallery');
?>
</h2>
<form name="uploadimage" id="uploadimage_form" method="POST" enctype="multipart/form-data" action="<?php
echo $this->filepath . '#uploadimage';
?>
" accept-charset="utf-8" >
<?php
wp_nonce_field('ngg_addgallery');
?>
<table class="form-table">
<tr valign="top">
<th scope="row"><?php
_e('Upload image', 'nggallery');
?>
</th>
<td><span id='spanButtonPlaceholder'></span><input type="file" name="imagefiles[]" id="imagefiles" size="35" class="imagefiles"/></td>
</tr>
<tr valign="top">
<th scope="row"><?php
_e('in to', 'nggallery');
?>
</th>
<td><select name="galleryselect" id="galleryselect">
<option value="0" ><?php
_e('Choose gallery', 'nggallery');
?>
</option>
<?php
foreach ($this->gallerylist as $gallery) {
//special case : we check if a user has this cap, then we override the second cap check
if (!current_user_can('NextGEN Upload in all galleries')) {
if (!nggAdmin::can_manage_this_gallery($gallery->author)) {
continue;
}
}
$name = empty($gallery->title) ? $gallery->name : $gallery->title;
echo '<option value="' . $gallery->gid . '" >' . $gallery->gid . ' - ' . $name . '</option>' . "\n";
}
?>
</select>
<br /><?php
echo $this->maxsize;
?>
<br /><?php
if (is_multisite() && wpmu_enable_function('wpmuQuotaCheck')) {
display_space_usage();
}
?>
</td>
</tr>
</table>
<div class="submit">
<?php
if ($ngg->options['swfUpload']) {
?>
<input type="submit" name="disable_flash" id="disable_flash" title="<?php
_e('The batch upload requires Adobe Flash 10, disable it if you have problems', 'nggallery');
?>
" value="<?php
_e('Disable flash upload', 'nggallery');
?>
" />
<?php
} else {
?>
<input type="submit" name="enable_flash" id="enable_flash" title="<?php
_e('Upload multiple files at once by ctrl/shift-selecting in dialog', 'nggallery');
?>
" value="<?php
_e('Enable flash based upload', 'nggallery');
?>
" />
<?php
}
?>
<input class="button-primary" type="submit" name="uploadimage" id="uploadimage_btn" value="<?php
_e('Upload images', 'nggallery');
?>
" />
</div>
</form>
<?php
}
示例14: nggallery_picturelist
function nggallery_picturelist()
{
// *** show picture list
global $wpdb, $nggdb, $user_ID, $ngg;
// Look if its a search result
$is_search = isset($_GET['s']) ? true : false;
if ($is_search) {
// fetch the imagelist
$picturelist = $ngg->manage_page->search_result;
// we didn't set a gallery or a pagination
$act_gid = 0;
$_GET['paged'] = 1;
$page_links = false;
} else {
// GET variables
$act_gid = $ngg->manage_page->gid;
// Load the gallery metadata
$gallery = $nggdb->find_gallery($act_gid);
if (!$gallery) {
nggGallery::show_error(__('Gallery not found.', 'nggallery'));
return;
}
// Check if you have the correct capability
if (!nggAdmin::can_manage_this_gallery($gallery->author)) {
nggGallery::show_error(__('Sorry, you have no access here', 'nggallery'));
return;
}
// look for pagination
if (!isset($_GET['paged']) || $_GET['paged'] < 1) {
$_GET['paged'] = 1;
}
$start = ($_GET['paged'] - 1) * 50;
// get picture values
$picturelist = $nggdb->get_gallery($act_gid, $ngg->options['galSort'], $ngg->options['galSortDir'], false, 50, $start);
// build pagination
$page_links = paginate_links(array('base' => add_query_arg('paged', '%#%'), 'format' => '', 'prev_text' => __('«'), 'next_text' => __('»'), 'total' => $nggdb->paged['max_objects_per_page'], 'current' => $_GET['paged']));
// get the current author
$act_author_user = get_userdata((int) $gallery->author);
}
// list all galleries
$gallerylist = $nggdb->find_all_galleries();
//get the columns
$gallery_columns = ngg_manage_gallery_columns();
$hidden_columns = get_hidden_columns('nggallery-manage-images');
$num_columns = count($gallery_columns) - count($hidden_columns);
?>
<!--[if IE]>
<style type="text/css">
.custom_thumb {
display : none;
}
</style>
<![endif]-->
<script type="text/javascript">
<!--
function showDialog( windowId, height ) {
var form = document.getElementById('updategallery');
var elementlist = "";
for (i = 0, n = form.elements.length; i < n; i++) {
if(form.elements[i].type == "checkbox") {
if(form.elements[i].name == "doaction[]")
if(form.elements[i].checked == true)
if (elementlist == "")
elementlist = form.elements[i].value
else
elementlist += "," + form.elements[i].value ;
}
}
jQuery("#" + windowId + "_bulkaction").val(jQuery("#bulkaction").val());
jQuery("#" + windowId + "_imagelist").val(elementlist);
// console.log (jQuery("#TB_imagelist").val());
tb_show("", "#TB_inline?width=640&height=" + height + "&inlineId=" + windowId + "&modal=true", false);
}
function checkAll(form)
{
for (i = 0, n = form.elements.length; i < n; i++) {
if(form.elements[i].type == "checkbox") {
if(form.elements[i].name == "doaction[]") {
if(form.elements[i].checked == true)
form.elements[i].checked = false;
else
form.elements[i].checked = true;
}
}
}
}
function getNumChecked(form)
{
var num = 0;
for (i = 0, n = form.elements.length; i < n; i++) {
if(form.elements[i].type == "checkbox") {
if(form.elements[i].name == "doaction[]")
if(form.elements[i].checked == true)
num++;
}
}
//.........这里部分代码省略.........
示例15: nggallery_manage_gallery_main
function nggallery_manage_gallery_main()
{
global $wpdb, $ngg;
?>
<div class="wrap">
<h2><?php
_e('Gallery Overview', 'nggallery');
?>
</h2>
<br style="clear: both;"/>
<table class="widefat">
<thead>
<tr>
<th scope="col" ><?php
_e('ID');
?>
</th>
<th scope="col" ><?php
_e('Title', 'nggallery');
?>
</th>
<th scope="col" ><?php
_e('Description', 'nggallery');
?>
</th>
<th scope="col" ><?php
_e('Author', 'nggallery');
?>
</th>
<th scope="col" ><?php
_e('Page ID', 'nggallery');
?>
</th>
<th scope="col" ><?php
_e('Quantity', 'nggallery');
?>
</th>
<th scope="col" ><?php
_e('Action');
?>
</th>
</tr>
</thead>
<tbody>
<?php
$gallerylist = nggdb::find_all_galleries('gid', 'asc', TRUE);
if ($gallerylist) {
foreach ($gallerylist as $gallery) {
$class = $class == 'class="alternate"' ? '' : 'class="alternate"';
$gid = $gallery->gid;
$name = empty($gallery->title) ? $gallery->name : $gallery->title;
$author_user = get_userdata((int) $gallery->author);
?>
<tr id="gallery-<?php
echo $gid;
?>
" <?php
echo $class;
?>
>
<th scope="row"><?php
echo $gid;
?>
</th>
<td>
<?php
if (nggAdmin::can_manage_this_gallery($gallery->author)) {
?>
<a href="<?php
echo wp_nonce_url($ngg->manage_page->base_page . "&mode=edit&gid=" . $gid, 'ngg_editgallery');
?>
" class='edit' title="<?php
_e('Edit');
?>
" >
<?php
echo $name;
?>
</a>
<?php
} else {
?>
<?php
echo $gallery->title;
?>
<?php
}
?>
</td>
<td><?php
echo $gallery->galdesc;
?>
</td>
<td><?php
echo $author_user->display_name;
?>
</td>
<td><?php
echo $gallery->pageid;
?>
//.........这里部分代码省略.........