comicpress-core/classes/partials/options-admin.inc

40 lines
1.6 KiB
PHP
Raw Normal View History

<div class="wrap">
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="">
<input type="hidden" name="cp[_nonce]" value="<?php echo esc_attr($nonce) ?>" />
2009-11-13 03:13:05 +00:00
<h3><?php _e('Global Options', 'comicpress') ?></h3>
<table class="widefat fixed">
<tr>
<th width="25%" scope="row" valign="top"><?php _e("Arrange storyline category order", 'comicpress') ?></th>
<td width="75%">
2009-11-13 19:45:28 +00:00
<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>
2009-11-07 22:50:47 +00:00
</div>
<script type="text/javascript">Storyline.setup()</script>
2009-11-13 03:13:05 +00:00
<p><em><?php _e('(drag and drop desired order. categories can be modified on the Posts -> Categories page)', 'comicpress') ?></em></p>
</td>
</tr>
<tr>
<th scope="row" valign="top"><?php _e('Set up comic image types', 'comicpress') ?></th>
<td>
<div id="image-type-container">
<?php foreach ($this->comicpress->comicpress_options['image_types'] as $type => $info) { ?>
<?php include('_image-type-editor.inc'); ?>
<?php } ?>
</div>
2009-11-13 19:45:28 +00:00
<a id="add-new-image-type" href="#">[+] Add a new image type</a>
2009-11-13 12:51:40 +00:00
<script type="text/javascript">ComicImageTypes.setup()</script>
2009-11-13 03:13:05 +00:00
</td>
</tr>
</table>
2009-11-13 19:45:28 +00:00
<div style="text-align: center; margin-top: 10px;">
<input class="button" type="submit" value="<?php _e('Submit Updated ComicPress Options', 'comicpress') ?>" />
</div>
2009-11-13 03:13:05 +00:00
</form>
</div>