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

78 lines
2.6 KiB
PHP
Raw Normal View History

2009-11-17 02:12:04 +00:00
<div class="wrap comicpress-admin">
2010-01-28 01:21:53 +00:00
<h2><?php _e('ComicPress Core 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-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
2010-01-25 00:24:57 +00:00
<?php include('_storyline-order.inc') ?>
2009-11-17 02:12:04 +00:00
2010-01-25 00:24:57 +00:00
<?php include('_comic-image-types.inc') ?>
2010-01-01 21:35:48 +00:00
2010-01-28 01:21:53 +00:00
<h3><?php _e('Enabled Backends', 'comicpress') ?></h3>
<div id="comicpress-enabled-backends-holder" class="comicpress-holder">
<table class="widefat">
<?php foreach ($backends as $backend) {
$obj = new $backend(); ?>
<tr>
<th scope="row">
<label>
<input type="checkbox"
name="cp[enabled_backends][<?php echo esc_attr($backend) ?>]"
value="yes"
<?php echo in_array($backend, $this->comicpress->comicpress_options['enabled_backends']) ? 'checked="checked"' : '' ?> />
<?php echo esc_html(preg_replace('#^ComicPressBackend(.*)Factory$#', '\1', $backend)) ?>
</label>
</th>
<td>
<?php echo esc_html($obj->description) ?>
</td>
</tr>
<?php } ?>
</table>
<p>
<?php _e("Disable backends you're not using to save system resources.", 'comicpress') ?>
</p>
<input class="button-primary" type="submit" value="<?php _e('Submit Updated ComicPress Options', 'comicpress') ?>" />
2010-01-15 00:37:22 +00:00
</div>
2010-01-01 21:35:48 +00:00
<?php do_action('comicpress-options-admin') ?>
2009-11-13 03:13:05 +00:00
</form>
</div>
2010-01-03 15:17:31 +00:00
<script type="text/javascript">
(function() {
var tab_holder = new Element('div', { className: 'comicpress-tab-holder' });
$$('.comicpress-admin > h2').pop().insert({after: tab_holder});
var show_tab = function(which) {
tab_holder.childElements().each(function(t) {
var is_same = (t.id == which);
t[is_same ? 'addClassName' : 'removeClassName']('active');
$('comicpress-' + t.id.replace(/^comicpress-tab-/, ''))[is_same ? 'show' : 'hide']();
});
};
$$('.comicpress-admin > form > h3').each(function(t) {
var id_suffix = t.innerHTML.replace(/\s+/g, '_');
var holder = new Element("div", { className: 'comicpress-admin-section', id: 'comicpress-' + id_suffix });
t.insert({before: holder});
holder.insert(t.next().remove());
holder.insert({top: t.remove()});
var tab = new Element("a", { href: "#", id: 'comicpress-tab-' + id_suffix }).update(t.innerHTML);
tab_holder.insert(tab);
tab.observe('click', function(e) {
Event.stop(e);
show_tab(e.target.id)
});
});
tab_holder.childElements().pop().addClassName('last');
show_tab(tab_holder.childElements().shift().id);
}());
</script>