mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-20 23:50:56 +00:00
45 lines
2.5 KiB
PHTML
45 lines
2.5 KiB
PHTML
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/w3-total-cache/inc/js/options.js"></script>
|
|
<script type="text/javascript" src="<?php echo WP_PLUGIN_URL; ?>/w3-total-cache/inc/js/lightbox.js"></script>
|
|
<?php if ($this->_support_reminder): ?>
|
|
<script type="text/javascript">
|
|
/*<![CDATA[*/
|
|
jQuery(function($) {
|
|
w3tc_lightbox_support_us();
|
|
});
|
|
/*]]>*/
|
|
</script>
|
|
<?php endif; ?>
|
|
|
|
<div class="wrap" id="w3tc">
|
|
<?php screen_icon('w3tc-logo'); ?>
|
|
|
|
<h2>W3 Total Cache</h2>
|
|
|
|
<?php foreach ($this->_errors as $error): ?>
|
|
<div class="error">
|
|
<p><?php echo $error; ?></p>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
|
|
<?php foreach ($this->_notes as $note): ?>
|
|
<div class="updated fade">
|
|
<p><?php echo $note; ?></p>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
|
|
<p id="w3tc-options-menu">
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=general"<?php if ($this->_tab == 'general'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>General Settings</a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=pgcache"<?php if ($this->_tab == 'pgcache'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>Page Cache Settings</a> |
|
|
<?php if (W3TC_PHP5): ?>
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=minify"<?php if ($this->_tab == 'minify'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>Minify Settings</a> |
|
|
<?php else: ?>
|
|
Minify Settings |
|
|
<?php endif; ?>
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=dbcache"<?php if ($this->_tab == 'dbcache'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>Database Cache Settings</a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=cdn"<?php if ($this->_tab == 'cdn'): ?> class="w3tc-options-menu-selected"<?php endif; ?>><acronym title="Content Delivery Network">CDN</acronym> Settings</a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=faq"<?php if ($this->_tab == 'faq'): ?> class="w3tc-options-menu-selected"<?php endif; ?>><acronym title="Frequently Asked Questions">FAQ</acronym></a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=support"<?php if ($this->_tab == 'support'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>Support</a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=install"<?php if ($this->_tab == 'install'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>Installation</a> |
|
|
<a href="?page=<?php echo W3TC_FILE; ?>&tab=about"<?php if ($this->_tab == 'about'): ?> class="w3tc-options-menu-selected"<?php endif; ?>>About</a>
|
|
</p>
|