mirror of
https://github.com/Frumph/comic-easel.git
synced 2026-07-19 21:33:31 -04:00
New Comic -> Config Sections
This commit is contained in:
+4
-3
@@ -140,13 +140,15 @@ if ( isset($_POST['_wpnonce']) && wp_verify_nonce($_POST['_wpnonce'], 'update-op
|
||||
<div id="ceoadmin">
|
||||
<?php
|
||||
$tab_info = array(
|
||||
'main' => __('Main', 'comiceasel'),
|
||||
'general' => __('General', 'comiceasel'),
|
||||
'navigation' => __('Navigation', 'comiceasel'),
|
||||
'archive' => __('Archive', 'comiceasel'),
|
||||
'archive' => __('Archive', 'comiceasel')
|
||||
);
|
||||
if (!defined('CEO_FEATURE_BUY_COMIC'))
|
||||
$tab_info['buycomic'] = __('Buy Comic','comiceasel');
|
||||
|
||||
$tab_info['webcomics-com'] = __('WebComics.COM', 'comiceasel');
|
||||
$tab_info['resources'] = __('Resources', 'comiceasel');
|
||||
if (empty($tab)) { $tab = array_shift(array_keys($tab_info)); }
|
||||
|
||||
foreach($tab_info as $tab_id => $label) { ?>
|
||||
@@ -187,7 +189,6 @@ if ( isset($_POST['_wpnonce']) && wp_verify_nonce($_POST['_wpnonce'], 'update-op
|
||||
<div class="ceoadmin-footer">
|
||||
<br />
|
||||
<a href="http://comiceasel.com"><?php _e('Comic Easel','comiceasel'); ?></a> <?php _e('created, developed and maintained by','comiceasel'); ?> <a href="http://frumph.net/">Philip M. Hofer</a> <small>(<a href="http://frumph.net/">Frumph</a>)</small><br />
|
||||
<?php _e('For technical assistance go to the','comiceasel'); ?> <a href="http://forum.frumph.net"><?php _e('Frumph.NET Forums.','comiceasel'); ?></a><br />
|
||||
<?php _e('If you like the Comic Easel plugin, please donate. It will help in developing new features and versions.','comiceasel'); ?><br />
|
||||
<table style="margin:0 auto;">
|
||||
<tr>
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
<div id="comiceasel-main">
|
||||
<div class="comiceasel-options">
|
||||
<table class="widefat">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="3"><?php _e('Technical Support','comiceasel'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr>
|
||||
<td>
|
||||
<?php _e('The Comic Easel website: ','comiceasel'); ?> <a href="http://comiceasel.com">http://comiceasel.com</a> <?php _e('probably has the answer you\'re looking for in the form of a post or in the faqs section.','comiceasel'); ?><br />
|
||||
<br />
|
||||
<?php _e('You can contact me for technical support at any of the following locations: ','comiceasel'); ?><br />
|
||||
<em><?php _e('(best chances to reach me at the top going down to the least chance)','comiceasel'); ?></em><br />
|
||||
<br />
|
||||
<?php _e('Form Email:','comiceasel'); ?> <a href="http://comiceasel.com/contact/">http://comiceasel.com/contact/</a><br />
|
||||
<?php _e('Via Facebook:','comiceasel'); ?> <a href="http://facebook.com/philip.hofer">http://facebook.com/philip.hofer</a><br />
|
||||
<?php _e('WebComics.COM Forums:', 'comiceasel'); ?> <a href="http://webcomics.com/forum/website-design-assistance/">http://webcomics.com/forum/website-design-assistance/</a> <?php _e('(Subscription only)','comiceasel'); ?><br />
|
||||
<?php _e('WordPress.ORG Forums:', 'comiceasel'); ?> <a href="https://wordpress.org/support/plugin/comic-easel">https://wordpress.org/support/plugin/comic-easel</a> <?php _e('(rarely go here)','comiceasel'); ?><br />
|
||||
<?php _e('On Twitter:', 'comiceasel'); ?> <a href="http://twitter.com/Frumph">http://twitter.com/Frumph</a> <?php _e('(Twitter and I are not friends atm)','comiceasel'); ?> <br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<table class="widefat">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="3"><?php _e('Sponsorship','comiceasel'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr>
|
||||
<td>
|
||||
<?php _e('This version of Comic Easel was sponsored by everyone in the WebComic community, my brother who helped me with my gofundme campaign. THANK YOU! (And Brad Guigar from WebComics.COM)','comiceasel'); ?><br />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
<div id="comiceasel-resources">
|
||||
<div class="comiceasel-options">
|
||||
<table class="widefat">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="3"><?php _e('Resources','comiceasel'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr>
|
||||
<td>
|
||||
<?php
|
||||
$got_file = wp_remote_get( 'http://frumph.net/downloads/webcomic-lists.html' );
|
||||
if (isset($got_file['body']) && !empty($got_file['body'])) echo $got_file['body'];
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
<div id="comiceasel-webcomics-com">
|
||||
<div class="comiceasel-options">
|
||||
<table class="widefat">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="3"><?php _e('WebComics.COM','comiceasel'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tr>
|
||||
<td>
|
||||
<?php
|
||||
$got_file = wp_remote_get( 'http://webcomics.com/getwebcomics-com/' );
|
||||
if (isset($got_file['body']) && !empty($got_file['body'])) echo $got_file['body'];
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user