2009-11-17 02:12:04 +00:00
|
|
|
<div class="wrap comicpress-admin">
|
2009-11-13 03:13:05 +00:00
|
|
|
<h2><?php _e('ComicPress Config', 'comicpress') ?></h2>
|
2009-11-13 19:45:28 +00:00
|
|
|
<form method="post" action="">
|
2009-11-14 18:56:54 +00:00
|
|
|
<input type="hidden" name="cp[_nonce]" value="<?php echo esc_attr($nonce) ?>" />
|
2009-11-17 01:24:19 +00:00
|
|
|
<input type="hidden" name="cp[action]" value="comicpress-options" />
|
|
|
|
<input type="hidden" name="cp[_action_nonce]" value="<?php echo esc_attr($action_nonce) ?>" />
|
2009-11-17 02:12:04 +00:00
|
|
|
|
|
|
|
<h3>
|
|
|
|
<?php _e('Storyline Order', 'comicpress') ?>
|
|
|
|
</h3>
|
|
|
|
<div id="comicpress-storyline-category-order-holder" class="comicpress-holder">
|
|
|
|
<input type="hidden" name="cp[storyline_order]" value="" />
|
|
|
|
<div id="storyline-sorter">
|
|
|
|
<div class="cp-children">
|
|
|
|
<?php
|
|
|
|
$this->_render_admin_storyline_tree(reset($storyline->get_simple_storyline()))
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">Storyline.setup()</script>
|
|
|
|
<p><em><?php _e('(drag and drop desired order. categories can be modified on the Posts -> Categories page)', 'comicpress') ?></em></p>
|
|
|
|
|
|
|
|
<input class="button-primary" type="submit" value="<?php _e('Submit Updated ComicPress Options', 'comicpress') ?>" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h3><?php _e('Comic Image Types', 'comicpress') ?></h3>
|
|
|
|
<div id="comicpress-image-types-holder" class="comicpress-holder">
|
|
|
|
<div id="image-type-container">
|
|
|
|
<?php foreach ($this->comicpress->comicpress_options['image_types'] as $type => $info) { ?>
|
|
|
|
<?php include('_image-type-editor.inc'); ?>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
<a id="add-new-image-type" href="#">[+] Add a new image type</a>
|
|
|
|
<script type="text/javascript">ComicImageTypes.setup()</script>
|
|
|
|
|
2009-11-17 01:24:19 +00:00
|
|
|
<input class="button-primary" type="submit" value="<?php _e('Submit Updated ComicPress Options', 'comicpress') ?>" />
|
2009-11-13 19:45:28 +00:00
|
|
|
</div>
|
2009-11-13 03:13:05 +00:00
|
|
|
</form>
|
2009-07-04 16:16:14 +00:00
|
|
|
</div>
|