force auto attach works

This commit is contained in:
John Bintz 2009-07-12 18:50:55 -04:00
parent 32a46dc6f8
commit 133f419e84
1 changed files with 15 additions and 0 deletions

View File

@ -56,6 +56,14 @@ class ComicPressAddonCore extends ComicPressAddon {
'html' => '<center>' . implode("\n", $field_html_lines) . '</center>' 'html' => '<center>' . implode("\n", $field_html_lines) . '</center>'
); );
$form_fields['auto_attach'] = array(
'label' => __("Auto-attach?", 'comicpress'),
'input' => 'html',
'html' => '<input type="checkbox" name="attachments[' . $post->ID . '][auto_attach]" value="yes" checked="checked" /> <em>'
. __('Attach to this post w/o needing to insert into post', 'comicpress')
. '</em>'
);
return $form_fields; return $form_fields;
} }
@ -128,6 +136,13 @@ class ComicPressAddonCore extends ComicPressAddon {
if (isset($settings['comic_image_type'])) { if (isset($settings['comic_image_type'])) {
update_post_meta($post_id, 'comic_image_type', $settings['comic_image_type']); update_post_meta($post_id, 'comic_image_type', $settings['comic_image_type']);
} }
if (isset($settings['auto_attach'])) {
if (isset($settings['post_parent'])) {
$media_post = get_post($post_id);
$media_post->post_parent = $settings['post_parent'];
wp_update_post($media_post);
}
}
} }
} else { } else {
//coming from us //coming from us