晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/root/home/stando/www/wp-content/plugins/w3-total-cache/inc/options/ |
Upload File : |
<?php
namespace W3TC;
if ( !defined( 'W3TC' ) )
die();
/*
* Display the header for our dashboard.
*
* If we're on the pro version, we'll show the standard W3TC logo and a message stating the user is
* on pro. As of 0.14.3, the free version will instead show a really, really nice banner. Really terrific.
* Just fantasic. Other banners, not so good. Everyone agrees, believe me.
*/
if ( Util_Environment::is_w3tc_pro( Dispatcher::config() ) ) {
include W3TC_INC_DIR . '/options/common/header.php';
echo '<p>' .
sprintf( __( 'The plugin is currently <span class="w3tc-%s">%s</span> in <strong>%s</strong> mode.', 'w3-total-cache' )
, $enabled ? "enabled" : "disabled"
, $enabled ? __( 'enabled', 'w3-total-cache' ) : __( 'disabled', 'w3-total-cache' )
, Util_Environment::w3tc_edition( $this->_config ) ) .
'</p>';
} else {
// When header.php is not included (above), we need to do our head action and open the wrap.
do_action( 'w3tc-dashboard-head' );
echo '<div class="wrap" id="w3tc">';
include W3TC_INC_DIR . '/options/parts/dashboard_banner.php';
}
?>
<form id="w3tc_dashboard" action="admin.php?page=<?php echo $this->_page; ?>" method="post">
<p>
Perform a
<input type="button" class="button button-self-test {nonce: '<?php echo wp_create_nonce( 'w3tc' ); ?>'}" value="<?php _e( 'compatibility check', 'w3-total-cache' ) ?>" />,
<?php echo Util_Ui::nonce_field( 'w3tc' ); ?>
<input id="flush_all" class="button" type="submit" name="w3tc_flush_all" value="<?php _e( 'empty all caches', 'w3-total-cache' ) ?>"<?php if ( ! $enabled ): ?> disabled="disabled"<?php endif; ?> /> <?php _e( 'at once or', 'w3-total-cache' ) ?>
<input class="button" type="submit" name="w3tc_flush_memcached" value="<?php _e( 'empty only the memcached cache(s)', 'w3-total-cache' ) ?>"<?php if ( ! $can_empty_memcache ): ?> disabled="disabled"<?php endif; ?> /> <?php _e( 'or', 'w3-total-cache' ) ?>
<input class="button" type="submit" name="w3tc_flush_opcode" value="<?php _e( 'empty only the opcode cache', 'w3-total-cache' ) ?>"<?php if ( ! $can_empty_opcode ): ?> disabled="disabled"<?php endif; ?> /> <?php _e( 'or', 'w3-total-cache' ) ?>
<input class="button" type="submit" name="w3tc_flush_file" value="<?php _e( 'empty only the disk cache(s)', 'w3-total-cache' ) ?>"<?php if ( ! $can_empty_file ): ?> disabled="disabled"<?php endif; ?> /> <?php _e( 'or', 'w3-total-cache' ) ?>
<?php if ( $cdn_mirror_purge && $cdn_enabled ): ?>
<input class="button" type="submit" name="w3tc_flush_cdn" value="<?php _e( 'purge CDN completely', 'w3-total-cache' ) ?>" /> <?php _e( 'or', 'w3-total-cache' ) ?>
<?php endif; ?>
<input type="submit" name="w3tc_flush_browser_cache" value="<?php _e( 'update Media Query String', 'w3-total-cache' ) ?>" <?php disabled( ! ( $browsercache_enabled && $browsercache_update_media_qs ) ) ?> class="button" />
<?php
$string = __( 'or', 'w3-total-cache' );
echo implode( " $string ", apply_filters( 'w3tc_dashboard_actions', array() ) ) ?>.
</p>
</form>
<div id="w3tc-dashboard-widgets" class="clearfix widefat metabox-holder">
<?php $screen = get_current_screen();
?>
<div id="postbox-container-left">
<div class="content">
<div id="dashboard-text" style="display:inline-block;">
<h1><?php _e( 'Dashboard', 'w3-total-cache' )?></h1>
<p>Thanks for choosing W3TC as your Web Performance Optimization (<acronym title="Web Performance Optimization">WPO</acronym>) framework!
</div>
<div id="widgets-container">
<?php do_meta_boxes( $screen->id, 'normal', '' ); ?>
</div>
</div>
</div>
<div id="postbox-container-right">
<div id='postbox-container-3' class='postbox-container' style="width: 100%;">
<?php do_meta_boxes( $screen->id, 'side', '' ); ?>
</div>
</div>
<div style="clear:both"></div>
<?php
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
?>
</div>
<?php include W3TC_INC_DIR . '/options/common/footer.php'; ?>