Compare commits

..

2 Commits

Author SHA1 Message Date
John Bintz 831b8d80c6 big improvements to media uploader 2009-11-01 22:32:35 -05:00
John Bintz ed8231a193 working on enhancements 2009-11-01 20:20:40 -05:00
2 changed files with 30 additions and 5 deletions

View File

@ -192,12 +192,13 @@ class ComicPressAddonCore extends ComicPressAddon {
* Set up the admin interface and meta boxes. * Set up the admin interface and meta boxes.
*/ */
function setup_admin_interface() { function setup_admin_interface() {
global $plugin_page; global $plugin_page, $pagenow, $post;
add_theme_page(__("ComicPress Core", 'comicpress'), __('ComicPress Core', 'comicpress'), 'edit_themes', 'comicpress/render_admin', array(&$this, 'render_admin')); add_theme_page(__("ComicPress Core", 'comicpress'), __('ComicPress Core', 'comicpress'), 'edit_themes', 'comicpress/render_admin', array(&$this, 'render_admin'));
add_theme_page(__("Edit Partials", 'comicpress'), __('Edit Partials', 'comicpress'), 'edit_themes', 'comicpress/edit_partials', array(&$this, 'render_edit_partials')); add_theme_page(__("Edit Partials", 'comicpress'), __('Edit Partials', 'comicpress'), 'edit_themes', 'comicpress/edit_partials', array(&$this, 'render_edit_partials'));
if (isset($_REQUEST['post'])) { if (strpos($page, "edit") === 0) {
var_dump($post);
add_meta_box("comic-image-ordering", __("Comic Image Ordering", 'comicpress'), array(&$this, 'render_comic_image_ordering'), "post", "normal", "low"); add_meta_box("comic-image-ordering", __("Comic Image Ordering", 'comicpress'), array(&$this, 'render_comic_image_ordering'), "post", "normal", "low");
} }
@ -205,6 +206,10 @@ class ComicPressAddonCore extends ComicPressAddon {
wp_enqueue_style('cp-admin', get_stylesheet_directory_uri() . '/css/cp-admin.css'); wp_enqueue_style('cp-admin', get_stylesheet_directory_uri() . '/css/cp-admin.css');
wp_enqueue_script('cp-admin', get_stylesheet_directory_uri() . '/js/Storyline.js', array('jquery', 'jquery-ui-sortable')); wp_enqueue_script('cp-admin', get_stylesheet_directory_uri() . '/js/Storyline.js', array('jquery', 'jquery-ui-sortable'));
} }
if (strpos($pagenow, "media-upload") === 0) {
wp_enqueue_script('cp-media', get_stylesheet_directory_uri() . '/js/MediaUpload.js', array('jquery'));
}
} }
/** /**
@ -258,6 +263,7 @@ class ComicPressAddonCore extends ComicPressAddon {
global $pagenow; global $pagenow;
$current_type = get_post_meta($post->ID, 'comic_image_type', true); $current_type = get_post_meta($post->ID, 'comic_image_type', true);
if (empty($current_type)) { $current_type = reset(array_keys($this->comic_image_types)); }
$field_html_lines = array(); $field_html_lines = array();
$field_html_lines[] = '<input type="hidden" name="cp[_nonce]" value="' . wp_create_nonce('comicpress') . '" />'; $field_html_lines[] = '<input type="hidden" name="cp[_nonce]" value="' . wp_create_nonce('comicpress') . '" />';

19
js/MediaUpload.js Normal file
View File

@ -0,0 +1,19 @@
jQuery(function() {
jQuery('.media-item').each(function() {
var item = this;
jQuery('.savesend', item).each(function() {
jQuery(this).prepend(jQuery('<input type="submit" name="save" value="Save changes" />').addClass('button'));
});
var show_insert = function(t) {
jQuery('input[name*=send]', item)[(t.value == 'none') ? 'show' : 'hide']();
};
jQuery('input[name*=comic_image_type]', item).bind('click', function() { show_insert(this); });
var type = jQuery('input[name*=comic_image_type][checked]', item).get(0);
if (type) {
jQuery('.filename.new', item).append(jQuery('<strong />').text(' (' + jQuery.trim(jQuery(type).parent().text()) + ')'));
show_insert(type);
}
});
});