mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Quick Edit for Tags, Categories and Link Categories, improvements to handling errors in quick and bulk edit.
git-svn-id: http://svn.automattic.com/wordpress/trunk@9083 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
90792c9a3d
commit
dc564f4792
@ -730,19 +730,49 @@ case 'sample-permalink':
|
|||||||
break;
|
break;
|
||||||
case 'inline-save':
|
case 'inline-save':
|
||||||
check_ajax_referer( 'inlineeditnonce', '_inline_edit' );
|
check_ajax_referer( 'inlineeditnonce', '_inline_edit' );
|
||||||
|
|
||||||
if ( ! isset($_POST['post_ID']) || ! ( $id = (int) $_POST['post_ID'] ) )
|
if ( ! isset($_POST['post_ID']) || ! ( $post_ID = (int) $_POST['post_ID'] ) )
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
if ( $last = wp_check_post_lock( $id ) ) {
|
if ( 'page' == $_POST['post_type'] ) {
|
||||||
|
if ( ! current_user_can( 'edit_page', $post_ID ) )
|
||||||
|
die( __('You are not allowed to edit this page.') );
|
||||||
|
} else {
|
||||||
|
if ( ! current_user_can( 'edit_post', $post_ID ) )
|
||||||
|
die( __('You are not allowed to edit this post.') );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $last = wp_check_post_lock( $post_ID ) ) {
|
||||||
$last_user = get_userdata( $last );
|
$last_user = get_userdata( $last );
|
||||||
$last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
|
$last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
|
||||||
echo '<tr><td colspan="8"><div class="error"><p>' . sprintf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ), wp_specialchars( $last_user_name ) ) . '</p></div></td></tr>';
|
printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ), wp_specialchars( $last_user_name ) );
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline_save_row( $_POST );
|
$data = &$_POST;
|
||||||
|
$post = get_post( $post_ID, ARRAY_A );
|
||||||
|
$data['content'] = $post['post_content'];
|
||||||
|
$data['excerpt'] = $post['post_excerpt'];
|
||||||
|
|
||||||
|
// rename
|
||||||
|
$data['user_ID'] = $GLOBALS['user_ID'];
|
||||||
|
$data['parent_id'] = $data['post_parent'];
|
||||||
|
|
||||||
|
// status
|
||||||
|
if ( 'private' == $data['keep_private'] )
|
||||||
|
$data['post_status'] = 'private';
|
||||||
|
else
|
||||||
|
$data['post_status'] = $data['_status'];
|
||||||
|
|
||||||
|
if ( empty($data['comment_status']) )
|
||||||
|
$data['comment_status'] = 'closed';
|
||||||
|
if ( empty($data['ping_status']) )
|
||||||
|
$data['ping_status'] = 'closed';
|
||||||
|
|
||||||
|
// update the post
|
||||||
|
$_POST = $data;
|
||||||
|
edit_post();
|
||||||
|
|
||||||
$post = array();
|
$post = array();
|
||||||
if ( 'page' == $_POST['post_type'] ) {
|
if ( 'page' == $_POST['post_type'] ) {
|
||||||
$post[] = get_post($_POST['post_ID']);
|
$post[] = get_post($_POST['post_ID']);
|
||||||
@ -752,7 +782,61 @@ case 'inline-save':
|
|||||||
$post[] = get_post($_POST['post_ID']);
|
$post[] = get_post($_POST['post_ID']);
|
||||||
post_rows($post);
|
post_rows($post);
|
||||||
}
|
}
|
||||||
die();
|
|
||||||
|
exit;
|
||||||
|
break;
|
||||||
|
case 'inline-save-tax':
|
||||||
|
check_ajax_referer( 'taxinlineeditnonce', '_inline_edit' );
|
||||||
|
|
||||||
|
if ( ! current_user_can('manage_categories') )
|
||||||
|
die( '<tr colspan="6"><td>' . __('Cheatin’ uh?') . '</td></tr>' );
|
||||||
|
|
||||||
|
if ( ! isset($_POST['tax_ID']) || ! ( $id = (int) $_POST['tax_ID'] ) )
|
||||||
|
exit;
|
||||||
|
|
||||||
|
switch ($_POST['tax_type']) {
|
||||||
|
case 'cat' :
|
||||||
|
$data = array();
|
||||||
|
$data['cat_ID'] = $id;
|
||||||
|
$data['cat_name'] = $_POST['name'];
|
||||||
|
$data['category_nicename'] = $_POST['slug'];
|
||||||
|
if ( isset($_POST['parent']) && (int) $_POST['parent'] > 0 )
|
||||||
|
$data['category_parent'] = $_POST['parent'];
|
||||||
|
|
||||||
|
$updated = wp_update_category($data);
|
||||||
|
|
||||||
|
if ( $updated && !is_wp_error($updated) )
|
||||||
|
echo _cat_row( $id, 0 );
|
||||||
|
else
|
||||||
|
die( __('Category not updated.') );
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 'link-cat' :
|
||||||
|
$updated = wp_update_term($id, 'link_category', $_POST);
|
||||||
|
|
||||||
|
if ( $updated && !is_wp_error($updated) )
|
||||||
|
echo link_cat_row($id);
|
||||||
|
else
|
||||||
|
die( __('Category not updated.') );
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 'tag' :
|
||||||
|
$updated = wp_update_term($id, 'post_tag', $_POST);
|
||||||
|
|
||||||
|
if ( $updated && !is_wp_error($updated) ) {
|
||||||
|
$tag = get_term( $id, 'post_tag' );
|
||||||
|
if ( !$tag || is_wp_error( $tag ) )
|
||||||
|
die( __('Tag not updated.') );
|
||||||
|
|
||||||
|
echo _tag_row($tag);
|
||||||
|
} else {
|
||||||
|
die( __('Tag not updated.') );
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
exit;
|
||||||
break;
|
break;
|
||||||
case 'meta-box-order':
|
case 'meta-box-order':
|
||||||
check_ajax_referer( 'meta-box-order' );
|
check_ajax_referer( 'meta-box-order' );
|
||||||
@ -803,7 +887,7 @@ case 'find_posts':
|
|||||||
$stat = __('Unpublished');
|
$stat = __('Unpublished');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( '0000-00-00 00:00:00' == $post->post_date ) {
|
if ( '0000-00-00 00:00:00' == $post->post_date ) {
|
||||||
$time = '';
|
$time = '';
|
||||||
} else {
|
} else {
|
||||||
|
@ -111,6 +111,8 @@ if ( isset($_GET['_wp_http_referer']) && ! empty($_GET['_wp_http_referer']) ) {
|
|||||||
|
|
||||||
wp_enqueue_script( 'admin-categories' );
|
wp_enqueue_script( 'admin-categories' );
|
||||||
wp_enqueue_script('admin-forms');
|
wp_enqueue_script('admin-forms');
|
||||||
|
if ( current_user_can('manage_categories') )
|
||||||
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
require_once ('admin-header.php');
|
require_once ('admin-header.php');
|
||||||
|
|
||||||
@ -235,6 +237,7 @@ if ( $page_links )
|
|||||||
|
|
||||||
<?php include('edit-category-form.php'); ?>
|
<?php include('edit-category-form.php'); ?>
|
||||||
|
|
||||||
|
<?php inline_edit_term_row('category'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
@ -48,6 +48,8 @@ $title = __('Link Categories');
|
|||||||
|
|
||||||
wp_enqueue_script( 'admin-categories' );
|
wp_enqueue_script( 'admin-categories' );
|
||||||
wp_enqueue_script('admin-forms');
|
wp_enqueue_script('admin-forms');
|
||||||
|
if ( current_user_can('manage_categories') )
|
||||||
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
require_once ('admin-header.php');
|
require_once ('admin-header.php');
|
||||||
|
|
||||||
@ -183,6 +185,7 @@ if ( $page_links )
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php include('edit-link-category-form.php'); ?>
|
<?php include('edit-link-category-form.php'); ?>
|
||||||
|
<?php inline_edit_term_row('link-category'); ?>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
@ -69,7 +69,7 @@ if ( empty($title) )
|
|||||||
$title = __('View All Pages');
|
$title = __('View All Pages');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
wp_enqueue_script('admin-forms');
|
wp_enqueue_script('admin-forms');
|
||||||
wp_enqueue_script('inline-edit');
|
wp_enqueue_script('inline-edit-post');
|
||||||
wp_enqueue_script('pages');
|
wp_enqueue_script('pages');
|
||||||
|
|
||||||
$post_stati = array( // array( adj, noun )
|
$post_stati = array( // array( adj, noun )
|
||||||
|
@ -115,6 +115,8 @@ if ( isset($_GET['_wp_http_referer']) && ! empty($_GET['_wp_http_referer']) ) {
|
|||||||
|
|
||||||
wp_enqueue_script( 'admin-tags' );
|
wp_enqueue_script( 'admin-tags' );
|
||||||
wp_enqueue_script('admin-forms');
|
wp_enqueue_script('admin-forms');
|
||||||
|
if ( current_user_can('manage_categories') )
|
||||||
|
wp_enqueue_script('inline-edit-tax');
|
||||||
|
|
||||||
require_once ('admin-header.php');
|
require_once ('admin-header.php');
|
||||||
|
|
||||||
@ -187,7 +189,7 @@ if ( $page_links )
|
|||||||
|
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
|
|
||||||
<table class="widefat">
|
<table class="widefat tag">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<?php print_column_headers('tag'); ?>
|
<?php print_column_headers('tag'); ?>
|
||||||
@ -236,6 +238,7 @@ if ( $page_links )
|
|||||||
|
|
||||||
<br />
|
<br />
|
||||||
<?php include('edit-tag-form.php'); ?>
|
<?php include('edit-tag-form.php'); ?>
|
||||||
|
<?php inline_edit_term_row('tag'); ?>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ if ( empty($title) )
|
|||||||
$title = __('View All Posts');
|
$title = __('View All Posts');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
wp_enqueue_script('admin-forms');
|
wp_enqueue_script('admin-forms');
|
||||||
wp_enqueue_script('inline-edit');
|
wp_enqueue_script('inline-edit-post');
|
||||||
wp_enqueue_script('posts');
|
wp_enqueue_script('posts');
|
||||||
|
|
||||||
list($post_stati, $avail_post_stati) = wp_edit_posts_query();
|
list($post_stati, $avail_post_stati) = wp_edit_posts_query();
|
||||||
|
@ -123,6 +123,7 @@ function _cat_row( $category, $level, $name_override = false ) {
|
|||||||
$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>" . attribute_escape( $name ) . '</a><br />';
|
$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>" . attribute_escape( $name ) . '</a><br />';
|
||||||
$actions = array();
|
$actions = array();
|
||||||
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
||||||
|
$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick Edit') . '</a>';
|
||||||
if ( $default_cat_id != $category->term_id )
|
if ( $default_cat_id != $category->term_id )
|
||||||
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("categories.php?action=delete&cat_ID=$category->term_id", 'delete-category_' . $category->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this category '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("categories.php?action=delete&cat_ID=$category->term_id", 'delete-category_' . $category->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this category '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
||||||
$action_count = count($actions);
|
$action_count = count($actions);
|
||||||
@ -136,11 +137,11 @@ function _cat_row( $category, $level, $name_override = false ) {
|
|||||||
$edit = $name;
|
$edit = $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
$class = " class='alternate'" == $class ? '' : " class='alternate'";
|
$class = 'alternate' == $class ? '' : 'alternate';
|
||||||
|
|
||||||
$category->count = number_format_i18n( $category->count );
|
$category->count = number_format_i18n( $category->count );
|
||||||
$posts_count = ( $category->count > 0 ) ? "<a href='edit.php?cat=$category->term_id'>$category->count</a>" : $category->count;
|
$posts_count = ( $category->count > 0 ) ? "<a href='edit.php?cat=$category->term_id'>$category->count</a>" : $category->count;
|
||||||
$output = "<tr id='cat-$category->term_id'$class>";
|
$output = "<tr id='cat-$category->term_id' class='iedit $class'>";
|
||||||
|
|
||||||
$columns = get_column_headers('category');
|
$columns = get_column_headers('category');
|
||||||
$hidden = (array) get_user_option( 'manage-category-columns-hidden' );
|
$hidden = (array) get_user_option( 'manage-category-columns-hidden' );
|
||||||
@ -164,7 +165,11 @@ function _cat_row( $category, $level, $name_override = false ) {
|
|||||||
$output .= '</th>';
|
$output .= '</th>';
|
||||||
break;
|
break;
|
||||||
case 'name':
|
case 'name':
|
||||||
$output .= "<td $attributes>$edit</td>";
|
$output .= "<td $attributes>$edit";
|
||||||
|
$output .= '<div class="hidden" id="inline_' . $category->term_id . '">';
|
||||||
|
$output .= '<div class="name">' . attribute_escape( $category->name ) . '</div>';
|
||||||
|
$output .= '<div class="slug">' . $category->slug . '</div>';
|
||||||
|
$output .= '<div class="cat_parent">' . $category->parent . '</div></div></td>';
|
||||||
break;
|
break;
|
||||||
case 'description':
|
case 'description':
|
||||||
$output .= "<td $attributes>$category->description</td>";
|
$output .= "<td $attributes>$category->description</td>";
|
||||||
@ -182,6 +187,86 @@ function _cat_row( $category, $level, $name_override = false ) {
|
|||||||
return apply_filters('cat_row', $output);
|
return apply_filters('cat_row', $output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@internal Missing Short Description}}
|
||||||
|
*
|
||||||
|
* @since 2.7
|
||||||
|
*
|
||||||
|
* Outputs the HTML for the hidden table rows used in Categories, Link Caregories and Tags quick edit.
|
||||||
|
*
|
||||||
|
* @param string $type "tag", "category" or "link-category"
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
function inline_edit_term_row($type) {
|
||||||
|
|
||||||
|
if ( ! current_user_can( 'manage_categories' ) )
|
||||||
|
return;
|
||||||
|
|
||||||
|
$is_tag = $type == 'tag';
|
||||||
|
$columns = $is_tag ? get_column_headers('tag') : get_column_headers('category');
|
||||||
|
$hidden = (array) get_user_option( "manage-$type-columns-hidden" ); ?>
|
||||||
|
|
||||||
|
<form method="get" action=""><table style="display: none"><tbody id="inlineedit">
|
||||||
|
<tr title="<?php _e('Double-click to cancel'); ?>" id="inline-edit" style="display: none"><td colspan="8">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
foreach ( $columns as $column_name => $column_display_name ) {
|
||||||
|
$class = "class=\"$column_name column-$column_name quick-edit-div\"";
|
||||||
|
$style = in_array($column_name, $hidden) ? ' style="display:none;"' : '';
|
||||||
|
$attributes = "$class$style";
|
||||||
|
|
||||||
|
switch ($column_name) {
|
||||||
|
case 'cb':
|
||||||
|
break;
|
||||||
|
case 'description':
|
||||||
|
break;
|
||||||
|
case 'name': ?>
|
||||||
|
<div class="tax-name quick-edit-div"<?php echo $style ?> title="<?php _e('Name'); ?>">
|
||||||
|
<div class="title"><?php _e('Name'); ?></div>
|
||||||
|
<div class="in">
|
||||||
|
<input type="text" name="name" class="ptitle" value="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$output .= "<td $attributes>$edit</td>";
|
||||||
|
break;
|
||||||
|
case 'slug': ?>
|
||||||
|
<div class="tax-slug quick-edit-div"<?php echo $style ?> title="<?php _e('Slug'); ?>">
|
||||||
|
<div class="title"><?php _e('Slug'); ?></div>
|
||||||
|
<div class="in">
|
||||||
|
<input type="text" name="slug" class="ptitle" value="" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$output .= "<td $attributes>$category->slug</td>";
|
||||||
|
break;
|
||||||
|
case 'posts':
|
||||||
|
if ( 'category' == $type ) { ?>
|
||||||
|
<div class="tax-parent quick-edit-div"<?php echo $style ?> title="<?php _e('Parent Category'); ?>">
|
||||||
|
<div class="title"><?php _e('Parent Category'); ?></div>
|
||||||
|
<div class="in">
|
||||||
|
<?php wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('None'))); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php }
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<div class="clear"></div>
|
||||||
|
<div class="quick-edit-save">
|
||||||
|
<a accesskey="c" href="#inline-edit" title="<?php _e('Cancel'); ?>" class="button-secondary cancel"><?php _e('Cancel'); ?></a>
|
||||||
|
<a accesskey="s" href="#inline-edit" title="<?php _e('Save'); ?>" class="button-secondary save"><?php _e('Save'); ?></a>
|
||||||
|
<span class="hidden error"></span>
|
||||||
|
<?php wp_nonce_field( 'taxinlineeditnonce', '_inline_edit', false ); ?>
|
||||||
|
</div>
|
||||||
|
</td></tr>
|
||||||
|
</tbody></table></form>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@internal Missing Short Description}}
|
* {@internal Missing Short Description}}
|
||||||
*
|
*
|
||||||
@ -206,6 +291,7 @@ function link_cat_row( $category, $name_override = false ) {
|
|||||||
$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>$name</a><br />";
|
$edit = "<a class='row-title' href='$edit_link' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>$name</a><br />";
|
||||||
$actions = array();
|
$actions = array();
|
||||||
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
||||||
|
$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick Edit') . '</a>';
|
||||||
if ( $default_cat_id != $category->term_id )
|
if ( $default_cat_id != $category->term_id )
|
||||||
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("link-category.php?action=delete&cat_ID=$category->term_id", 'delete-link-category_' . $category->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this category '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("link-category.php?action=delete&cat_ID=$category->term_id", 'delete-link-category_' . $category->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this category '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
||||||
$action_count = count($actions);
|
$action_count = count($actions);
|
||||||
@ -219,11 +305,11 @@ function link_cat_row( $category, $name_override = false ) {
|
|||||||
$edit = $name;
|
$edit = $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
$class = " class='alternate'" == $class ? '' : " class='alternate'";
|
$class = 'alternate' == $class ? '' : 'alternate';
|
||||||
|
|
||||||
$category->count = number_format_i18n( $category->count );
|
$category->count = number_format_i18n( $category->count );
|
||||||
$count = ( $category->count > 0 ) ? "<a href='link-manager.php?cat_id=$category->term_id'>$category->count</a>" : $category->count;
|
$count = ( $category->count > 0 ) ? "<a href='link-manager.php?cat_id=$category->term_id'>$category->count</a>" : $category->count;
|
||||||
$output = "<tr id='link-cat-$category->term_id'$class>";
|
$output = "<tr id='link-cat-$category->term_id' class='iedit $class'>";
|
||||||
$columns = get_column_headers('link-category');
|
$columns = get_column_headers('link-category');
|
||||||
$hidden = (array) get_user_option( 'manage-link-category-columns-hidden' );
|
$hidden = (array) get_user_option( 'manage-link-category-columns-hidden' );
|
||||||
foreach ( $columns as $column_name => $column_display_name ) {
|
foreach ( $columns as $column_name => $column_display_name ) {
|
||||||
@ -246,7 +332,11 @@ function link_cat_row( $category, $name_override = false ) {
|
|||||||
$output .= "</th>";
|
$output .= "</th>";
|
||||||
break;
|
break;
|
||||||
case 'name':
|
case 'name':
|
||||||
$output .= "<td $attributes>$edit</td>";
|
$output .= "<td $attributes>$edit";
|
||||||
|
$output .= '<div class="hidden" id="inline_' . $category->term_id . '">';
|
||||||
|
$output .= '<div class="name">' . attribute_escape( $category->name ) . '</div>';
|
||||||
|
$output .= '<div class="slug">' . $category->slug . '</div>';
|
||||||
|
$output .= '<div class="cat_parent">' . $category->parent . '</div></div></td>';
|
||||||
break;
|
break;
|
||||||
case 'description':
|
case 'description':
|
||||||
$output .= "<td $attributes>$category->description</td>";
|
$output .= "<td $attributes>$category->description</td>";
|
||||||
@ -517,6 +607,7 @@ function _tag_row( $tag, $class = '' ) {
|
|||||||
$out .= '<td ' . $attributes . '><strong><a class="row-title" href="' . $edit_link . '" title="' . attribute_escape(sprintf(__('Edit "%s"'), $name)) . '">' . $name . '</a></strong><br />';
|
$out .= '<td ' . $attributes . '><strong><a class="row-title" href="' . $edit_link . '" title="' . attribute_escape(sprintf(__('Edit "%s"'), $name)) . '">' . $name . '</a></strong><br />';
|
||||||
$actions = array();
|
$actions = array();
|
||||||
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
$actions['edit'] = '<a href="' . $edit_link . '">' . __('Edit') . '</a>';
|
||||||
|
$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __('Quick Edit') . '</a>';
|
||||||
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("edit-tags.php?action=delete&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this tag '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
$actions['delete'] = "<a class='submitdelete' href='" . wp_nonce_url("edit-tags.php?action=delete&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this tag '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
|
||||||
$action_count = count($actions);
|
$action_count = count($actions);
|
||||||
$i = 0;
|
$i = 0;
|
||||||
@ -525,7 +616,9 @@ function _tag_row( $tag, $class = '' ) {
|
|||||||
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
|
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
|
||||||
$out .= "<span class='$action'>$link$sep</span>";
|
$out .= "<span class='$action'>$link$sep</span>";
|
||||||
}
|
}
|
||||||
$out .= '</td>';
|
$out .= '<div class="hidden" id="inline_' . $tag->term_id . '">';
|
||||||
|
$out .= '<div class="name">' . $name . '</div>';
|
||||||
|
$out .= '<div class="slug">' . $tag->slug . '</div></div></td>';
|
||||||
break;
|
break;
|
||||||
case 'slug':
|
case 'slug':
|
||||||
$out .= "<td $attributes>$tag->slug</td>";
|
$out .= "<td $attributes>$tag->slug</td>";
|
||||||
@ -573,7 +666,7 @@ function tag_rows( $page = 1, $pagesize = 20, $searchterms = '' ) {
|
|||||||
$class = '';
|
$class = '';
|
||||||
$count = 0;
|
$count = 0;
|
||||||
foreach( $tags as $tag )
|
foreach( $tags as $tag )
|
||||||
$out .= _tag_row( $tag, ++$count % 2 ? ' class="alternate"' : '' );
|
$out .= _tag_row( $tag, ++$count % 2 ? ' class="iedit alternate"' : ' class="iedit"' );
|
||||||
|
|
||||||
// filter and send to screen
|
// filter and send to screen
|
||||||
$out = apply_filters('tag_rows', $out);
|
$out = apply_filters('tag_rows', $out);
|
||||||
@ -745,7 +838,7 @@ function get_column_headers($page) {
|
|||||||
'posts' => __('Posts')
|
'posts' => __('Posts')
|
||||||
);
|
);
|
||||||
return apply_filters('manage_users_columns', $columns);
|
return apply_filters('manage_users_columns', $columns);
|
||||||
default :
|
default :
|
||||||
return apply_filters('manage_' . $page . '_columns', $columns);
|
return apply_filters('manage_' . $page . '_columns', $columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -799,9 +892,11 @@ function print_column_headers( $type, $id = true ) {
|
|||||||
/**
|
/**
|
||||||
* {@internal Missing Short Description}}
|
* {@internal Missing Short Description}}
|
||||||
*
|
*
|
||||||
* @since unknown
|
* Outputs the quick edit and bulk edit table rows
|
||||||
|
*
|
||||||
|
* @since 2.7
|
||||||
*
|
*
|
||||||
* @param unknown_type $type
|
* @param string $type 'post' or 'page'
|
||||||
*/
|
*/
|
||||||
function inline_edit_row( $type ) {
|
function inline_edit_row( $type ) {
|
||||||
global $current_user, $mode;
|
global $current_user, $mode;
|
||||||
@ -823,7 +918,7 @@ function inline_edit_row( $type ) {
|
|||||||
<?php
|
<?php
|
||||||
$bulk = 0;
|
$bulk = 0;
|
||||||
while ( $bulk < 2 ) { ?>
|
while ( $bulk < 2 ) { ?>
|
||||||
|
|
||||||
<tr title="<?php _e('Double-click to cancel'); ?>" id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" style="display: none"><td colspan="<?php echo $col_count; ?>">
|
<tr title="<?php _e('Double-click to cancel'); ?>" id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" style="display: none"><td colspan="<?php echo $col_count; ?>">
|
||||||
<?php
|
<?php
|
||||||
foreach($columns as $column_name=>$column_display_name) {
|
foreach($columns as $column_name=>$column_display_name) {
|
||||||
@ -968,7 +1063,7 @@ function inline_edit_row( $type ) {
|
|||||||
<div <?php echo $attributes ?> title="<?php _e('Author'); ?>">
|
<div <?php echo $attributes ?> title="<?php _e('Author'); ?>">
|
||||||
<div class="title"><?php _e('Author'); ?></div>
|
<div class="title"><?php _e('Author'); ?></div>
|
||||||
<div class="in">
|
<div class="in">
|
||||||
<?php
|
<?php
|
||||||
$users_opt = array('include' => $authors, 'name' => 'post_author', 'class'=> 'authors', 'multi' => 1);
|
$users_opt = array('include' => $authors, 'name' => 'post_author', 'class'=> 'authors', 'multi' => 1);
|
||||||
if ( $bulk ) $users_opt['show_option_none'] = __('- No Change -');
|
if ( $bulk ) $users_opt['show_option_none'] = __('- No Change -');
|
||||||
wp_dropdown_users( $users_opt ); ?>
|
wp_dropdown_users( $users_opt ); ?>
|
||||||
@ -1045,40 +1140,6 @@ function inline_edit_row( $type ) {
|
|||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* {@internal Missing Short Description}}
|
|
||||||
*
|
|
||||||
* @since unknown
|
|
||||||
*
|
|
||||||
* @param unknown_type $data
|
|
||||||
*/
|
|
||||||
function inline_save_row( $data ) {
|
|
||||||
// get the original post content
|
|
||||||
$post = get_post( $data['post_ID'], ARRAY_A );
|
|
||||||
$data['content'] = $post['post_content'];
|
|
||||||
|
|
||||||
// statuses
|
|
||||||
if ( 'private' == $data['keep_private'] )
|
|
||||||
$data['post_status'] = 'private';
|
|
||||||
else
|
|
||||||
$data['post_status'] = $data['_status'];
|
|
||||||
|
|
||||||
if ( empty($data['comment_status']) )
|
|
||||||
$data['comment_status'] = 'closed';
|
|
||||||
if ( empty($data['ping_status']) )
|
|
||||||
$data['ping_status'] = 'closed';
|
|
||||||
|
|
||||||
// rename
|
|
||||||
$data['user_ID'] = $GLOBALS['user_ID'];
|
|
||||||
$data['excerpt'] = $data['post_excerpt'];
|
|
||||||
$data['trackback_url'] = $data['to_ping'];
|
|
||||||
$data['parent_id'] = $data['post_parent'];
|
|
||||||
|
|
||||||
// update the post
|
|
||||||
$_POST = $data;
|
|
||||||
edit_post();
|
|
||||||
}
|
|
||||||
|
|
||||||
// adds hidden fields with the data for use in the inline editor
|
// adds hidden fields with the data for use in the inline editor
|
||||||
/**
|
/**
|
||||||
* {@internal Missing Short Description}}
|
* {@internal Missing Short Description}}
|
||||||
@ -1091,7 +1152,7 @@ function get_inline_data($post) {
|
|||||||
|
|
||||||
if ( ! current_user_can('edit_' . $post->post_type, $post->ID) )
|
if ( ! current_user_can('edit_' . $post->post_type, $post->ID) )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
$title = _draft_or_post_title($post->ID);
|
$title = _draft_or_post_title($post->ID);
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
@ -1114,13 +1175,13 @@ function get_inline_data($post) {
|
|||||||
<div class="post_parent">' . $post->post_parent . '</div>
|
<div class="post_parent">' . $post->post_parent . '</div>
|
||||||
<div class="page_template">' . wp_specialchars(get_post_meta( $post->ID, '_wp_page_template', true ), 1) . '</div>
|
<div class="page_template">' . wp_specialchars(get_post_meta( $post->ID, '_wp_page_template', true ), 1) . '</div>
|
||||||
<div class="menu_order">' . $post->menu_order . '</div>';
|
<div class="menu_order">' . $post->menu_order . '</div>';
|
||||||
|
|
||||||
if( $post->post_type == 'post' )
|
if( $post->post_type == 'post' )
|
||||||
echo '
|
echo '
|
||||||
<div class="tags_input">' . wp_specialchars( str_replace( ',', ', ', get_tags_to_edit($post->ID) ), 1) . '</div>
|
<div class="tags_input">' . wp_specialchars( str_replace( ',', ', ', get_tags_to_edit($post->ID) ), 1) . '</div>
|
||||||
<div class="post_category">' . implode( ',', wp_get_post_categories( $post->ID ) ) . '</div>
|
<div class="post_category">' . implode( ',', wp_get_post_categories( $post->ID ) ) . '</div>
|
||||||
<div class="sticky">' . (is_sticky($post->ID) ? 'sticky' : '') . '</div>';
|
<div class="sticky">' . (is_sticky($post->ID) ? 'sticky' : '') . '</div>';
|
||||||
|
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1231,7 +1292,7 @@ function _post_row($a_post, $pending_comments, $mode) {
|
|||||||
echo apply_filters('post_date_column_time', $t_time, $post, $column_name, $mode);
|
echo apply_filters('post_date_column_time', $t_time, $post, $column_name, $mode);
|
||||||
else
|
else
|
||||||
echo '<abbr title="' . $t_time . '">' . apply_filters('post_date_column_time', $h_time, $post, $column_name, $mode) . '</abbr>';
|
echo '<abbr title="' . $t_time . '">' . apply_filters('post_date_column_time', $h_time, $post, $column_name, $mode) . '</abbr>';
|
||||||
|
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -1476,7 +1537,7 @@ foreach ($posts_columns as $column_name=>$column_display_name) {
|
|||||||
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
|
( $i == $action_count ) ? $sep = '' : $sep = ' | ';
|
||||||
echo "<span class='$action'>$link$sep</span>";
|
echo "<span class='$action'>$link$sep</span>";
|
||||||
}
|
}
|
||||||
|
|
||||||
get_inline_data($post);
|
get_inline_data($post);
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
break;
|
break;
|
||||||
@ -2974,7 +3035,7 @@ function _draft_or_post_title($post_id = 0)
|
|||||||
{
|
{
|
||||||
$title = get_the_title($post_id);
|
$title = get_the_title($post_id);
|
||||||
if ( empty($title) )
|
if ( empty($title) )
|
||||||
$title = __('(no title)');
|
$title = __('(no title)');
|
||||||
return $title;
|
return $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
(function($) {
|
(function($) {
|
||||||
inlineEdit = {
|
inlineEditPost = {
|
||||||
|
|
||||||
init : function() {
|
init : function() {
|
||||||
var t = this, qeRow = $('#inline-edit'), bulkRow = $('#bulk-edit');
|
var t = this, qeRow = $('#inline-edit'), bulkRow = $('#bulk-edit');
|
||||||
@ -12,20 +12,20 @@ inlineEdit = {
|
|||||||
t.rows = $('tr.iedit');
|
t.rows = $('tr.iedit');
|
||||||
|
|
||||||
// prepare the edit row
|
// prepare the edit row
|
||||||
qeRow.dblclick(function() { inlineEdit.toggle(this); })
|
qeRow.dblclick(function() { inlineEditPost.toggle(this); })
|
||||||
.keyup(function(e) { if(e.which == 27) return inlineEdit.revert(); });
|
.keyup(function(e) { if(e.which == 27) return inlineEditPost.revert(); });
|
||||||
|
|
||||||
bulkRow.dblclick(function() { inlineEdit.revert(); })
|
bulkRow.dblclick(function() { inlineEditPost.revert(); })
|
||||||
.keyup(function(e) { if (e.which == 27) return inlineEdit.revert(); });
|
.keyup(function(e) { if (e.which == 27) return inlineEditPost.revert(); });
|
||||||
|
|
||||||
$('a.cancel', qeRow).click(function() { return inlineEdit.revert(); });
|
$('a.cancel', qeRow).click(function() { return inlineEditPost.revert(); });
|
||||||
$('a.save', qeRow).click(function() { return inlineEdit.save(this); });
|
$('a.save', qeRow).click(function() { return inlineEditPost.save(this); });
|
||||||
|
|
||||||
$('a.cancel', bulkRow).click(function() { return inlineEdit.revert(); });
|
$('a.cancel', bulkRow).click(function() { return inlineEditPost.revert(); });
|
||||||
$('a.save', bulkRow).click(function() { return inlineEdit.saveBulk(); });
|
$('a.save', bulkRow).click(function() { return inlineEditPost.saveBulk(); });
|
||||||
|
|
||||||
// add events
|
// add events
|
||||||
t.rows.dblclick(function() { inlineEdit.toggle(this); });
|
t.rows.dblclick(function() { inlineEditPost.toggle(this); });
|
||||||
t.addEvents(t.rows);
|
t.addEvents(t.rows);
|
||||||
|
|
||||||
$('#bulk-title-div').after(
|
$('#bulk-title-div').after(
|
||||||
@ -65,12 +65,12 @@ inlineEdit = {
|
|||||||
t.revert();
|
t.revert();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#post-query-submit').click(function(e){
|
$('#post-query-submit').click(function(e){
|
||||||
if ( $('form#posts-filter tr.inline-editor').length > 0 )
|
if ( $('form#posts-filter tr.inline-editor').length > 0 )
|
||||||
t.revert();
|
t.revert();
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
toggle : function(el) {
|
toggle : function(el) {
|
||||||
@ -82,7 +82,7 @@ inlineEdit = {
|
|||||||
addEvents : function(r) {
|
addEvents : function(r) {
|
||||||
r.each(function() {
|
r.each(function() {
|
||||||
var row = $(this);
|
var row = $(this);
|
||||||
$('a.editinline', row).click(function() { inlineEdit.edit(this); return false; });
|
$('a.editinline', row).click(function() { inlineEditPost.edit(this); return false; });
|
||||||
row.attr('title', inlineEditL10n.edit);
|
row.attr('title', inlineEditL10n.edit);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@ -104,7 +104,7 @@ inlineEdit = {
|
|||||||
|
|
||||||
$('#bulk-titles').html(te);
|
$('#bulk-titles').html(te);
|
||||||
$('#bulk-titles a').click(function() {
|
$('#bulk-titles a').click(function() {
|
||||||
var id = $(this).attr('id').substr(1), r = inlineEdit.type+'-'+id;
|
var id = $(this).attr('id').substr(1), r = inlineEditPost.type+'-'+id;
|
||||||
|
|
||||||
$('table.widefat input[value="'+id+'"]').attr('checked', '');
|
$('table.widefat input[value="'+id+'"]').attr('checked', '');
|
||||||
$('#ttle'+id).remove();
|
$('#ttle'+id).remove();
|
||||||
@ -186,7 +186,7 @@ inlineEdit = {
|
|||||||
if( typeof(id) == 'object' )
|
if( typeof(id) == 'object' )
|
||||||
id = this.getId(id);
|
id = this.getId(id);
|
||||||
|
|
||||||
$('#edit-'+id+' .check-column').html('<img src="images/loading.gif" alt="" />');
|
$('#edit-'+id+'.quick-edit-save').append('<img style="padding:0 15px;" src="images/loading.gif" alt="" />');
|
||||||
|
|
||||||
var params = {
|
var params = {
|
||||||
action: 'inline-save',
|
action: 'inline-save',
|
||||||
@ -201,12 +201,17 @@ inlineEdit = {
|
|||||||
// make ajax request
|
// make ajax request
|
||||||
$.post('admin-ajax.php', params,
|
$.post('admin-ajax.php', params,
|
||||||
function(r) {
|
function(r) {
|
||||||
var row = $(inlineEdit.what+id);
|
var row = $(inlineEditPost.what+id);
|
||||||
$('#edit-'+id).remove();
|
|
||||||
row.html($(r).html()).show()
|
if (r) {
|
||||||
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
$('#edit-'+id).remove();
|
||||||
.animate( { backgroundColor: '#eefee7' }, 500);
|
row.html($(r).html()).show()
|
||||||
inlineEdit.addEvents(row);
|
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
||||||
|
.animate( { backgroundColor: '#eefee7' }, 500);
|
||||||
|
inlineEditPost.addEvents(row);
|
||||||
|
} else {
|
||||||
|
$('#edit-'+id+' .quick-edit-save').append('<span class="error">'+inlineEditL10n.error+'</span>');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
@ -241,5 +246,5 @@ inlineEdit = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$(document).ready(function(){inlineEdit.init();});
|
$(document).ready(function(){inlineEditPost.init();});
|
||||||
})(jQuery);
|
})(jQuery);
|
145
wp-admin/js/inline-edit-tax.js
Normal file
145
wp-admin/js/inline-edit-tax.js
Normal file
@ -0,0 +1,145 @@
|
|||||||
|
|
||||||
|
(function($) {
|
||||||
|
inlineEditTax = {
|
||||||
|
|
||||||
|
init : function() {
|
||||||
|
var t = this, row = $('#inline-edit');
|
||||||
|
|
||||||
|
t.type = $('#the-list').attr('className').substr(5);
|
||||||
|
t.what = '#'+t.type+'-';
|
||||||
|
|
||||||
|
// get all editable rows
|
||||||
|
t.rows = $('tr.iedit');
|
||||||
|
|
||||||
|
// prepare the edit row
|
||||||
|
row.dblclick(function() { inlineEditTax.toggle(this); })
|
||||||
|
.keyup(function(e) { if(e.which == 27) return inlineEditTax.revert(); });
|
||||||
|
|
||||||
|
$('a.cancel', row).click(function() { return inlineEditTax.revert(); });
|
||||||
|
$('a.save', row).click(function() { return inlineEditTax.save(this); });
|
||||||
|
|
||||||
|
// add events
|
||||||
|
t.rows.dblclick(function() { inlineEditTax.toggle(this); });
|
||||||
|
t.addEvents(t.rows);
|
||||||
|
|
||||||
|
$('#doaction, #doaction2, #post-query-submit').click(function(e){
|
||||||
|
if ( $('form#posts-filter tr.inline-editor').length > 0 )
|
||||||
|
t.revert();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
toggle : function(el) {
|
||||||
|
var t = this;
|
||||||
|
|
||||||
|
$(t.what+t.getId(el)).css('display') == 'none' ? t.revert() : t.edit(el);
|
||||||
|
},
|
||||||
|
|
||||||
|
addEvents : function(r) {
|
||||||
|
r.each(function() {
|
||||||
|
var row = $(this);
|
||||||
|
$('a.editinline', row).click(function() { inlineEditTax.edit(this); return false; });
|
||||||
|
row.attr('title', inlineEditL10n.edit);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
edit : function(id) {
|
||||||
|
var t = this;
|
||||||
|
t.revert();
|
||||||
|
|
||||||
|
if ( typeof(id) == 'object' )
|
||||||
|
id = t.getId(id);
|
||||||
|
|
||||||
|
var editRow = $('#inline-edit').clone(true), rowData = $('#inline_'+id);
|
||||||
|
|
||||||
|
if ( $(t.what+id).hasClass('alternate') )
|
||||||
|
$(editRow).addClass('alternate');
|
||||||
|
|
||||||
|
$(t.what+id).hide().after(editRow);
|
||||||
|
|
||||||
|
$(':input[name="name"]', editRow).val( $('.name', rowData).text() );
|
||||||
|
$(':input[name="slug"]', editRow).val( $('.slug', rowData).text() );
|
||||||
|
|
||||||
|
// cat parents
|
||||||
|
var cat_parent = $('.cat_parent', rowData).text();
|
||||||
|
if ( cat_parent != '0' )
|
||||||
|
$('select[name="parent"]', editRow).val(cat_parent);
|
||||||
|
|
||||||
|
// remove the current parent and children from the parent dropdown
|
||||||
|
var pageOpt = $('select[name="parent"] option[value="'+id+'"]', editRow);
|
||||||
|
if ( pageOpt.length > 0 ) {
|
||||||
|
var pageLevel = pageOpt[0].className.split('-')[1], nextPage = pageOpt, pageLoop = true;
|
||||||
|
while ( pageLoop ) {
|
||||||
|
var nextPage = nextPage.next('option'), nextLevel = nextPage[0].className.split('-')[1];
|
||||||
|
if ( nextLevel <= pageLevel ) {
|
||||||
|
pageLoop = false;
|
||||||
|
} else {
|
||||||
|
nextPage.remove();
|
||||||
|
nextPage = pageOpt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pageOpt.remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(editRow).attr('id', 'edit-'+id).addClass('inline-editor').show();
|
||||||
|
$('.ptitle', editRow).eq(0).focus();
|
||||||
|
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
save : function(id) {
|
||||||
|
if( typeof(id) == 'object' )
|
||||||
|
id = this.getId(id);
|
||||||
|
|
||||||
|
$('#edit-'+id+'.quick-edit-save').append('<img style="padding:0 15px;" src="images/loading.gif" alt="" />');
|
||||||
|
|
||||||
|
var params = {
|
||||||
|
action: 'inline-save-tax',
|
||||||
|
tax_type: this.type,
|
||||||
|
tax_ID: id
|
||||||
|
};
|
||||||
|
|
||||||
|
var fields = $('#edit-'+id+' :input').fieldSerialize();
|
||||||
|
params = fields + '&' + $.param(params);
|
||||||
|
|
||||||
|
// make ajax request
|
||||||
|
$.post('admin-ajax.php', params,
|
||||||
|
function(r) {
|
||||||
|
var row = $(inlineEditTax.what+id);
|
||||||
|
|
||||||
|
if (r) {
|
||||||
|
if ( -1 != r.indexOf('<tr') ) {
|
||||||
|
$('#edit-'+id).remove();
|
||||||
|
row.html($(r).html()).show()
|
||||||
|
.animate( { backgroundColor: '#CCEEBB' }, 500)
|
||||||
|
.animate( { backgroundColor: '#eefee7' }, 500);
|
||||||
|
inlineEditTax.addEvents(row);
|
||||||
|
} else
|
||||||
|
$('#edit-'+id+' .quick-edit-save .error').html(r).show();
|
||||||
|
} else
|
||||||
|
$('#edit-'+id+' .quick-edit-save .error').html(inlineEditL10n.error).show();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
revert : function() {
|
||||||
|
var id = $('table.widefat tr.inline-editor').attr('id');
|
||||||
|
|
||||||
|
if ( id ) {
|
||||||
|
$('#'+id).remove();
|
||||||
|
id = id.substr( id.lastIndexOf('-') + 1 );
|
||||||
|
$(this.what+id).show();
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
|
getId : function(o) {
|
||||||
|
var id = o.tagName == 'TR' ? o.id : $(o).parents('tr').attr('id');
|
||||||
|
var parts = id.split('-');
|
||||||
|
return parts[parts.length - 1];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$(document).ready(function(){inlineEditTax.init();});
|
||||||
|
})(jQuery);
|
@ -2151,7 +2151,9 @@ a.togbox {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.inline-editor .post-title,
|
.inline-editor .post-title,
|
||||||
.inline-editor .page-title {
|
.inline-editor .page-title,
|
||||||
|
.inline-editor .tax-name,
|
||||||
|
.inline-editor .tax-slug {
|
||||||
width: 260px;
|
width: 260px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2162,7 +2164,9 @@ a.togbox {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.inline-editor .post-title .ptitle,
|
.inline-editor .post-title .ptitle,
|
||||||
.inline-editor .page-title .ptitle {
|
.inline-editor .page-title .ptitle,
|
||||||
|
.inline-editor .tax-name .ptitle,
|
||||||
|
.inline-editor .tax-slug .ptitle {
|
||||||
width: 245px;
|
width: 245px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
font-size: 12px !important;
|
font-size: 12px !important;
|
||||||
@ -2206,7 +2210,8 @@ a.togbox {
|
|||||||
width: 80px;
|
width: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-editor .categories {
|
.inline-editor .categories,
|
||||||
|
.inline-editor .column-posts {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2271,11 +2276,13 @@ a.togbox {
|
|||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inline-editor .parent {
|
.inline-editor .parent,
|
||||||
|
.inline-editor .tax-parent {
|
||||||
width: 180px;
|
width: 180px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpbody-content .inline-editor .parent select {
|
#wpbody-content .inline-editor .parent select,
|
||||||
|
#wpbody-content .inline-editor .tax-parent select {
|
||||||
width: 170px;
|
width: 170px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1402,7 +1402,7 @@ class Walker_CategoryDropdown extends Walker {
|
|||||||
$pad = str_repeat(' ', $depth * 3);
|
$pad = str_repeat(' ', $depth * 3);
|
||||||
|
|
||||||
$cat_name = apply_filters('list_cats', $category->name, $category);
|
$cat_name = apply_filters('list_cats', $category->name, $category);
|
||||||
$output .= "\t<option value=\"".$category->term_id."\"";
|
$output .= "\t<option class=\"level-$depth\" value=\"".$category->term_id."\"";
|
||||||
if ( $category->term_id == $args['selected'] )
|
if ( $category->term_id == $args['selected'] )
|
||||||
$output .= ' selected="selected"';
|
$output .= ' selected="selected"';
|
||||||
$output .= '>';
|
$output .= '>';
|
||||||
|
@ -1544,7 +1544,7 @@ function wp_update_post($postarr = array()) {
|
|||||||
$postarr = array_merge($post, $postarr);
|
$postarr = array_merge($post, $postarr);
|
||||||
$postarr['post_category'] = $post_cats;
|
$postarr['post_category'] = $post_cats;
|
||||||
if ( $clear_date ) {
|
if ( $clear_date ) {
|
||||||
$postarr['post_date'] = current_time('mysql');;
|
$postarr['post_date'] = current_time('mysql');
|
||||||
$postarr['post_date_gmt'] = '';
|
$postarr['post_date_gmt'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,10 +36,10 @@ require( ABSPATH . WPINC . '/functions.wp-styles.php' );
|
|||||||
*/
|
*/
|
||||||
function wp_default_scripts( &$scripts ) {
|
function wp_default_scripts( &$scripts ) {
|
||||||
global $current_user;
|
global $current_user;
|
||||||
|
|
||||||
if (!$guessurl = site_url())
|
if (!$guessurl = site_url())
|
||||||
$guessurl = wp_guess_url();
|
$guessurl = wp_guess_url();
|
||||||
|
|
||||||
$userid = isset($current_user) ? $current_user->ID : 0;
|
$userid = isset($current_user) ? $current_user->ID : 0;
|
||||||
$scripts->base_url = $guessurl;
|
$scripts->base_url = $guessurl;
|
||||||
$scripts->default_version = get_bloginfo( 'version' );
|
$scripts->default_version = get_bloginfo( 'version' );
|
||||||
@ -241,19 +241,25 @@ function wp_default_scripts( &$scripts ) {
|
|||||||
));
|
));
|
||||||
|
|
||||||
$scripts->add( 'theme-preview', '/wp-admin/js/theme-preview.js', array( 'thickbox', 'jquery' ), '20080625' );
|
$scripts->add( 'theme-preview', '/wp-admin/js/theme-preview.js', array( 'thickbox', 'jquery' ), '20080625' );
|
||||||
|
|
||||||
$scripts->add( 'inline-edit', '/wp-admin/js/inline-edit.js', array( 'jquery', 'jquery-form', 'suggest' ), '20080930' );
|
$scripts->add( 'inline-edit-post', '/wp-admin/js/inline-edit-post.js', array( 'jquery', 'jquery-form', 'suggest' ), '20080930' );
|
||||||
$scripts->localize( 'inline-edit', 'inlineEditL10n', array(
|
$scripts->localize( 'inline-edit-post', 'inlineEditL10n', array(
|
||||||
'edit' => __('Double-click to edit')
|
'edit' => __('Double-click to edit')
|
||||||
) );
|
) );
|
||||||
|
|
||||||
|
$scripts->add( 'inline-edit-tax', '/wp-admin/js/inline-edit-tax.js', array( 'jquery', 'jquery-form' ), '20081003' );
|
||||||
|
$scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array(
|
||||||
|
'edit' => __('Double-click to edit'),
|
||||||
|
'error' => __('Error while saving the changes.')
|
||||||
|
) );
|
||||||
|
|
||||||
$scripts->add( 'plugin-install', '/wp-admin/js/plugin-install.js', array( 'thickbox', 'jquery' ), '20080803' );
|
$scripts->add( 'plugin-install', '/wp-admin/js/plugin-install.js', array( 'thickbox', 'jquery' ), '20080803' );
|
||||||
$scripts->localize( 'plugin-install', 'plugininstallL10n', array(
|
$scripts->localize( 'plugin-install', 'plugininstallL10n', array(
|
||||||
'plugin_information' => __('Plugin Information:')
|
'plugin_information' => __('Plugin Information:')
|
||||||
) );
|
) );
|
||||||
|
|
||||||
$scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
|
$scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
|
||||||
|
|
||||||
$scripts->add( 'user-settings', '/wp-admin/js/user-settings.js', array(), '20080829' );
|
$scripts->add( 'user-settings', '/wp-admin/js/user-settings.js', array(), '20080829' );
|
||||||
$scripts->localize( 'user-settings', 'userSettings', array(
|
$scripts->localize( 'user-settings', 'userSettings', array(
|
||||||
'url' => SITECOOKIEPATH,
|
'url' => SITECOOKIEPATH,
|
||||||
|
Loading…
Reference in New Issue
Block a user