comicpress-manager-1.5/classes/views/ComicPressQuomicPressWidget...

119 lines
5.6 KiB
PHP
Raw Normal View History

2009-06-13 12:10:16 +00:00
<?php
class ComicPressQuomicPressWidget extends ComicPressView {
function ComicPressQuomicPressWidget() {
global $comicpress_manager;
if (($this->show_widget = (count($comicpress_manager->errors) == 0)) === true) {
$ok_to_generate_thumbs = false;
$thumbnails_to_generate = array();
$comicpress_manager->need_calendars = true;
$this->thumbnails_to_generate = $comicpress_manager->get_thumbnails_to_generate();
$this->go_live_time_string = ($comicpress_manager->get_cpm_option('cpm-default-post-time') == "now") ?
__("<strong>now</strong>", 'comicpress-manager') :
sprintf(__("at <strong>%s</strong>", 'comicpress-manager'), $comicpress_manager->get_cpm_option('cpm-default-post-time'));
$this->show_new_setup_warning = ((count($comicpress_manager->comic_files) == 0) && ($comicpress_manager->get_subcomic_directory() === false));
$this->category_to_use = null;
$this->_storyline_setup();
if ($comicpress_manager->get_subcomic_directory() !== false) {
$this->category_to_use = get_option('comicpress-manager-manage-subcomic');
} else {
if ($comicpress_manager->get_cpm_option('cpm-default-comic-category-is-last-storyline') == 1) {
$this->category_to_use = end(explode("/", end($this->category_tree)));
} else {
$this->category_to_use = end(explode("/", reset($this->category_tree)));
}
}
}
}
function render() {
global $post, $comicpress_manager, $comicpress_manager_admin;
$category = get_category($this->category_to_use);
$comicpress_manager_admin->write_global_styles_scripts();
?>
<div class="wrap">
<?php $comicpress_manager_admin->handle_warnings() ?>
<?php if ($this->show_widget) { ?>
<?php if ($this->show_new_setup_warning) { ?>
<div style="border: solid #daa 1px; background-color: #ffe7e7; padding: 5px">
<strong>It looks like this is a new ComicPress install.</strong> You should test to make
sure uploading works correctly by visiting <a href="admin.php?page=<?php echo plugin_basename(realpath(dirname(__FILE__) . '/../../comicpress_manager_admin.php')) ?>">ComicPress -> Upload</a>.
</div>
<?php } ?>
<p>
<?php printf(__("<strong>Upload a single comic file</strong> and immediately start editing the associated published post. Your post will be going live %s on the provided date and will be posted in the <strong>%s</strong> category.", 'comicpress-manager'), $go_live_time_string, $category->cat_name) ?>
<?php
if ($comicpress_manager->get_subcomic_directory() !== false) {
printf(__("Comic files will be uploaded to the <strong>%s</strong> comic subdirectory.", 'comicpress-manager'), get_cat_name(get_option('comicpress-manager-manage-subcomic')));
}
?>
<?php if (!empty($this->thumbnails_to_generate)) {
$thumbnail_strings = array();
foreach ($this->thumbnails_to_generate as $type) {
$thumbnail_strings[] = sprintf(__("<strong>%s</strong> thumbnails that are <strong>%spx</strong> wide", 'comicpress-manager'), $type, $comicpress_manager->properties["${type}_comic_width"]);
}
?>
<?php printf(__("You'll be generating: %s.", 'comicpress-manager'), implode(", ", $thumbnail_strings)) ?>
<?php } ?>
</p>
<form action="?page=<?php echo plugin_basename(realpath(dirname(__FILE__) . '/../../comicpress-manager.php')) ?>" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $comicpress_manager->convert_short_size_string_to_bytes(ini_get('upload_max_filesize')) ?>" />
<input type="hidden" name="action" value="write-comic-post" />
<input type="hidden" name="upload-destination" value="comic" />
<input type="hidden" name="thumbnails" value="yes" />
<input type="hidden" name="new_post" value="yes" />
<?php echo generate_comic_categories_options('in-comic-category[]', false) ?>
<input type="hidden" name="time" value="<?php echo $comicpress_manager->get_cpm_option('cpm-default-post-time') ?>" />
<table class="form-table">
<tr>
<th scope="row"><?php _e('File:', 'comicpress-manager') ?></th>
<td><input type="file" name="upload" /></td>
</tr>
<?php if (count($category_checkboxes = $this->_generate_additional_categories_checkboxes()) > 0) {
?>
<tr>
<th scope="row"><?php _e("Additional Categories:", 'comicpress-manager') ?></th>
<td><?php echo implode("\n", $category_checkboxes) ?></td>
</tr>
<?php } ?>
<tr>
<th scope="row"><?php _e("Post date (leave blank if already in filename):", 'comicpress-manager') ?></th>
<td>
<div class="curtime"><input type="text" id="override-date" name="override-date" /></div>
</td>
</tr>
<tr>
<td colspan="2"><input type="submit" class="button" value="Upload Comic File and Edit Post" /></td>
</tr>
</table>
</form>
<script type="text/javascript">
Calendar.setup({
inputField: "override-date",
ifFormat: "%Y-%m-%d",
button: "override-date"
});
</script>
<?php } ?>
</div>
<?php }
}
?>