| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/wst2024/wp-content/plugins/floating-button/admin/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// WP_List_Table is not loaded automatically so we need to load it in our application
if ( ! class_exists( 'WP_List_Table' ) ) {
require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
}
/**
* Create a new table class that will extend the WP_List_Table
*
*/
class Wow_List_Table extends WP_List_Table {
/**
* Number of items per page
*
* @var int
* @since 1.5
*/
public $per_page = 30;
private $data;
private $plugin;
/**
* Wow_List_Table constructor.
*
* @param string $data - Name of the datatable
* @param array $plugin - Information about the plugin
*/
public function __construct( $data, $plugin ) {
$this->data = $data;
$this->plugin = $plugin;
// Set parent defaults
parent::__construct( array(
'ajax' => false,
) );
$this->process_bulk_action();
}
/**
* Process the bulk actions
*
* @access public
* @return void
* @since 1.4
*/
public function process_bulk_action() {
$ids = isset( $_POST['ID'] ) ? ( map_deep($_POST['ID'], 'absint') ) : false;
$action = $this->current_action();
if ( ! is_array( $ids ) ) {
$ids = array( $ids );
}
if ( empty( $action ) ) {
return;
}
global $wpdb;
$table = $this->data;
foreach ( $ids as $id ) {
if ( 'delete-items' === $this->current_action() ) {
$wpdb->delete( $table, array( 'id' => $id ), array( '%d' ) );
}
}
}
public function search_box( $text, $input_id ) {
$input_id = $input_id . '-search-input';
if ( ! empty( $_REQUEST['orderby'] ) ) {
echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />';
}
if ( ! empty( $_REQUEST['order'] ) ) {
echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />';
}
?>
<p class="search-box">
<label class="screen-reader-text" for="<?php echo esc_attr( $input_id ) ?>"><?php echo esc_attr( $text ); ?>
:</label>
<input type="search" id="<?php echo esc_attr( $input_id ) ?>" name="s"
value="<?php _admin_search_query(); ?>"/>
<?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?>
</p>
<?php
}
/**
* Define what data to show on each column of the table
*
* @param array $item Data
* @param String $column_name - Current column name
*
* @return Mixed
*/
public function column_default( $item, $column_name ) {
$value = $item[ $column_name ];
return $value;
}
public function column_title( $item ) {
$slug = $this->plugin['slug'];
$text = 'floating-button';
$title = ! empty( $item['title'] ) ? $item['title'] : esc_attr__( 'Untitle', 'floating-button' );
$edit_url = admin_url( '/admin.php?page=' . esc_attr( $slug ) . '&tab=settings&act=update&id='
. urlencode( $item['ID'] ) );
$duplicate_url = admin_url( '/admin.php?page=' . esc_attr( $slug ) . '&tab=settings&act=duplicate&id='
. urlencode( $item['ID'] ) );
$delete_url = admin_url( '/admin.php?page=' . esc_attr( $slug ) . '&info=delete&did=' . urlencode( $item['ID'] ) );
$actions = array(
'edit' => '<a href="' . esc_url( $edit_url ) . '">' . esc_attr__( 'Edit', 'floating-button' ) . '</a>',
'duplicate' => '<a href="' . esc_url( $duplicate_url ) . '" style="color:green;">' . esc_attr__( 'Duplicate', 'floating-button' )
. '</a>',
'delete' => '<a href="' . esc_url( $delete_url ) . '" style="color:red;">' . esc_attr__( 'Delete', 'floating-button' ) . '</a>',
);
return '<a href="' . esc_url( $edit_url ) . '">' . $title . '</a>' . $this->row_actions( $actions );
}
/**
* Prepare the items for the table to process
*
* @return Void
*/
public function prepare_items() {
$columns = $this->get_columns();
$hidden = $this->get_hidden_columns();
$sortable = $this->get_sortable_columns();
$data = $this->table_data();
$perPage = 30;
$currentPage = $this->get_pagenum();
if ( $data ) {
usort( $data, array( &$this, 'sort_data' ) );
$data = array_slice( $data, ( ( $currentPage - 1 ) * $perPage ), $perPage );
}
$totalItems = $this->list_count();
$this->_column_headers = array( $columns, $hidden, $sortable );
$this->items = $data;
$this->set_pagination_args( array(
'total_items' => $totalItems,
'per_page' => $perPage,
'total_pages' => ceil( $totalItems / $perPage ),
) );
}
/**
* Override the parent columns method. Defines the columns to use in your listing table
*
* @return Array
*/
public function get_columns() {
$columns = array(
'cb' => '<input type="checkbox" />',
'title' => 'Title',
'code' => 'Shortcode',
'status' => 'Status',
'testmode' => 'Test Mode',
);
return $columns;
}
/**
* Define which columns are hidden
*
* @return Array
*/
public function get_hidden_columns() {
return array();
}
/**
* Define the sortable columns
*
* @return array
*/
public function get_sortable_columns() {
return array(
'ID' => array( 'ID', false ),
);
}
/**
* Get the table data
*
* @return Array
*/
private function table_data() {
global $wpdb;
$data = array();
$paged = $this->get_paged();
$offset = $this->per_page * ( $paged - 1 );
$search = $this->get_search();
$table = $this->data;
if ( ! $search || empty( $search ) ) {
$result = $wpdb->get_results( "SELECT * FROM $table order by id desc" );
} elseif ( is_numeric( $search ) ) {
$query = $wpdb->prepare( "SELECT * FROM $table WHERE id=%d", absint( $search ) );
$result = $wpdb->get_results( $query );
} else {
$query = $wpdb->prepare( "SELECT * FROM $table WHERE title=%s order by id desc", sanitize_text_field( $search ) );
$result = $wpdb->get_results( $query );
}
$slug = $this->plugin['slug'];
$shortcode = $this->plugin['shortcode'];
$prefix = $this->plugin['prefix'];
if ( $result ) {
foreach ( $result as $key => $value ) {
$param = unserialize( $value->param );
$option_name_view = '_' . $prefix . '_view_counter_' . $value->id;
$option_name_action = '_' . $prefix . '_action_counter_' . $value->id;
$tool_view = get_option( $option_name_view, '0' );
$tool_action = get_option( $option_name_action, '0' );
if ( ! empty( $tool_view ) ) {
$conversion = round( $tool_action / $tool_view * 100, 2 ) . '%';
} else {
$conversion = '0%';
}
$title = ! empty( $value->title ) ? $value->title : esc_attr__( 'Untitle', 'floating-button' ) ;
$check_status = isset( $param['menu_status'] ) ? $param['menu_status'] : 1;
$status = ! empty( $check_status ) ? '<span style="color:green;">Activated</span>' : '<span style="color:red;">Deactivated</span>';
$testmode = empty( $param['test_mode'] ) ? 'OFF' : 'ON';
$data[] = array(
'ID' => $value->id,
'title' => '<a href="admin.php?page=' . esc_attr($slug) . '&tab=settings&act=update&id=' . absint($value->id)
. '">' . esc_attr($title) . '</a>',
'code' => '[' . esc_attr($shortcode) . ' id="' . absint($value->id) . '"]',
'view' => $tool_view,
'action' => $tool_action,
'conversion' => $conversion,
'edit' => '<a href="admin.php?page=' . esc_attr($slug) . '&tab=settings&act=update&id='
. absint($value->id) . '">edit</a>',
'delete' => '<a href="admin.php?page=' . esc_attr($slug) . '&info=delete&did=' . absint($value->id)
. '" style="color:red;">delete</a>',
'duplicate' => '<a href="admin.php?page=' . esc_attr($slug) . '&tab=settings&act=duplicate&id='
. absint($value->id) . '" style="color:green;">duplicate</a>',
'status' => $status,
'testmode' => $testmode,
);
}
}
return $data;
}
/**
* Retrieve the current page number
*
* @access public
* @return int Current page number
* @since 1.5
*/
public function get_paged() {
return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
}
/**
* Retrieves the search query string
*
* @access public
* @return mixed string If search is present, false otherwise
* @since 1.0
*/
public function get_search() {
return ! empty( $_POST['s'] ) ? urldecode( trim( $_POST['s'] ) ) : false;
}
public function list_count() {
global $wpdb;
$data = $this->data;
$result = $wpdb->get_results( "SELECT * FROM {$data} order by id asc" );
return count( $result );
}
/**
* Render the checkbox column
*
* @access public
*
* @param array $item Contains all the data for the checkbox column
*
* @return string Displays a checkbox
* @since 1.0
*/
public function column_cb( $item ) {
return sprintf( '<input type="checkbox" name="%1$s[]" value="%2$s" />', 'ID', $item['ID'] );
}
/**
* Retrieve the bulk actions
*
* @access public
* @return array $actions Array of the bulk actions
* @since 1.4
*/
public function get_bulk_actions() {
$actions = array(
'delete-items' => esc_attr__('Delate', 'floating-button'),
);
return $actions;
}
/**
* Gets the name of the primary column.
*
* @return string Name of the primary column.
* @since 1.0
* @access protected
*
*/
protected function get_primary_column_name() {
return 'ID';
}
/**
* Allows you to sort the data by the variables set in the $_GET
*
* @return Mixed
*/
private function sort_data( $a, $b ) {
// If no sort, default to title
$orderby = ( ! empty( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'ID';
// If no order, default to asc
$order = ( ! empty( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'desc';
// Determine sort order
$result = strnatcmp( $a[ $orderby ], $b[ $orderby ] );
// Send final sort direction to usort
return ( $order === 'asc' ) ? $result : - $result;
}
}