*/
class Woo_Feed_Manage_list extends Woo_Feed_List_Table {
/** ************************************************************************
* Normally we would be querying data from a database and manipulating that
* for use in your list table. For this example, we're going to simplify it
* slightly and create a pre-built array. Think of this as the data that might
* be returned by $wpdb->query()
*
* In a real-world scenario, you would make your own custom query inside
* this class' prepare_items() method.
*
* @var array
**************************************************************************/
/** ************************************************************************
* REQUIRED. Set up a constructor that references the parent constructor. We
* use the parent reference to set some default configs.
***************************************************************************/
function __construct() {
// Set parent defaults
parent::__construct(
array(
'singular' => __( 'feed', 'woo-feed' ), // singular name of the listed records
'plural' => __( 'feeds', 'woo-feed' ), // plural name of the listed records
'ajax' => false, // does this table support ajax?
)
);
}
/** ************************************************************************
* Recommended. This method is called when the parent class can't find a method
* specifically build for a given column. Generally, it's recommended to include
* one method for each column you want to render, keeping your package class
* neat and organized. For example, if the class needs to process a column
* named 'title', it would first see if a method named $this->column_title()
* exists - if it does, that method will be used. If it doesn't, this one will
* be used. Generally, you should try to use custom column methods as much as
* possible.
*
* Since we have defined a column_title() method later on, this method doesn't
* need to concern itself with any column with a name of 'title'. Instead, it
* needs to handle everything else.
*
* For more detailed insight into how columns are handled, take a look at
* WP_List_Table::single_row_columns()
*
* @param array $item A singular item (one full row's worth of data)
* @param string $column_name The name/slug of the column to be processed
*
* @return string Text or HTML to be placed inside the column
';
}
case 'provider':
$provider = $itemInfo['feedrules']['provider'];
return ucwords( str_replace( '_', ' ', $provider ) );
case 'type':
$feedType = $itemInfo['feedrules']['feedType'];
return strtoupper( str_replace( '_', ' ', $feedType ) );
case 'url':
/** @noinspection SpellCheckingInspection */
return sprintf(
'%2$s%3$s',
$statusId,
$itemInfo[ $column_name ],
''
);
case 'last_updated':
return $itemInfo[ $column_name ];
case 'view':
$export_url = wp_nonce_url( admin_url( 'admin-post.php?action=wf_export_feed&feed=' . $getItem ), 'wpf-export' );
$download_url = wp_nonce_url( admin_url( 'admin-post.php?action=wf_download_feed&feed=' . $getItem ), 'wpf-download-feed' );
$log_download_url = wp_nonce_url( admin_url( 'admin-post.php?action=wf_download_feed_log&feed=' . $getItem ), 'wpf-log-download' );
/** @noinspection HtmlUnknownTarget */
return sprintf(
'',
$itemInfo['url'],
esc_html__( 'View', 'woo-feed' ),
$getItem,
esc_html__( 'Regenerate', 'woo-feed' ),
esc_html__( 'Download', 'woo-feed' ),
$disableBtn,
$spinIcon,
esc_html__( 'Export Feed Config', 'woo-feed' ),
esc_url( $export_url ),
esc_url( $log_download_url ),
esc_html__( 'Download Feed Log', 'woo-feed'),
esc_url( $download_url )
);
default:
return false;
}
}
/** ************************************************************************
* Recommended. This is a custom column method and is responsible for what
* is rendered in any column with a name/slug of 'title'. Every time the class
* needs to render a column, it first looks for a method named
* column_{$column_title} - if it exists, that method is run. If it doesn't
* exist, column_default() is called instead.
*
* This example also illustrates how to implement rollover actions. Actions
* should be an associative array formatted as 'slug'=>'link html' - and you
* will need to generate the URLs yourself. You could even ensure the links
*
* @param array $item A singular item (one full row's worth of data)
*
* @return string Text to be placed inside the column
(movie title only)
* *************************************************************************@see WP_List_Table::::single_row_columns()
*/
function column_option_name( $item ) {
global $plugin_page;
// Build row actions
$edit_nonce = wp_create_nonce( 'wf_edit_feed' );
$delete_nonce = wp_create_nonce( 'wf_delete_feed' );
$duplicate_nonce = wp_create_nonce( 'wf_duplicate_feed' );
// $title = '' . $item['option_name'] . '';
$actions = array(
'edit' => sprintf(
'' . __( 'Edit', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'edit-feed',
$item['option_name'],
$edit_nonce
),
'duplicate' => sprintf(
'' . __( 'Duplicate', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'duplicate-feed',
$item['option_name'],
$duplicate_nonce
),
'delete' => sprintf(
'' . __( 'Delete', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'delete-feed',
absint( $item['option_id'] ),
$delete_nonce
),
);
// Return the title contents
$name = str_replace( 'wf_feed_', '', $item['option_name'] );
$config = maybe_unserialize( maybe_unserialize( $item['option_value'] ) );
if ( isset( $config['feedrules'], $config['feedrules']['filename'] ) ) {
$name = sprintf(
'%s',
esc_attr( $plugin_page ),
'edit-feed',
$item['option_name'],
$edit_nonce,
$config['feedrules']['filename']
);
}
return sprintf( '%1$s (id:%2$s)%3$s',
$name,
esc_html( $item['option_id'] ),
$this->row_actions( $actions )
);
}
public static function get_feeds() {
global $wpdb;
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
$result = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->options WHERE option_name LIKE %s ORDER BY option_id DESC;", 'wf_feed_%' ), 'ARRAY_A' );
return $result;
}
/**
* Delete a Feed.
*
* @param int $id Feed ID
*
* @return false
*/
public static function delete_feed( $id ) {
return woo_feed_delete_feed( $id );
}
/**
* Returns the count of records in the database.
*
* @return null|string
*/
public static function record_count() {
global $wpdb;
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
return $wpdb->get_var( $wpdb->prepare( "SELECT * FROM $wpdb->options WHERE option_name like %s", 'wf_feed_%' ) );
}
/** Text displayed when no data is available */
public function no_items() {
esc_html_e( 'No feed available.', 'woo-feed' );
}
/** ************************************************************************
* REQUIRED if displaying checkboxes or using bulk actions! The 'cb' column
* is given special treatment when columns are processed. It ALWAYS needs to
* have it's own method.
*
* @param array $item A singular item (one full row's worth of data)
*
* @return string Text to be placed inside the column
(movie title only)
* *************************************************************************@see WP_List_Table::::single_row_columns()
*/
function column_cb( $item ) {
return sprintf(
'',
/*$1%s*/
$this->_args['singular'], // Let's simply repurpose the table's singular label ("movie")
/*$2%s*/
$item['option_id'] // The value of the checkbox should be the record's id
);
}
function column_name( $item ) {
global $plugin_page;
$edit_nonce = wp_create_nonce( 'wf_edit_feed' );
$delete_nonce = wp_create_nonce( 'wf_delete_feed' );
$duplicate_nonce = wp_create_nonce( 'wf_duplicate_feed' );
$title = '' . $item['option_name'] . '';
$actions = array(
'edit' => sprintf(
'' . __( 'Edit', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'edit-feed',
absint( $item['option_id'] ),
$edit_nonce
),
'duplicate' => sprintf(
'' . __( 'Duplicate', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'duplicate-feed',
$item['option_name'],
$duplicate_nonce
),
'delete' => sprintf(
'' . __( 'Delete', 'woo-feed' ) . '',
esc_attr( $plugin_page ),
'delete-feed',
absint( $item['option_id'] ),
$delete_nonce
),
);
return $title . $this->row_actions( $actions );
}
/** ************************************************************************
* REQUIRED! This method dictates the table's columns and titles. This should
* return an array where the key is the column slug (and class) and the value
* is the column's title text. If you need a checkbox for bulk actions, refer
* to the $columns array below.
*
* The 'cb' column is treated differently than the rest. If including a checkbox
* column in your table you must create a column_cb() method. If you don't need
* bulk actions or checkboxes, simply leave the 'cb' entry out of your array.
*
* @return array An associative array containing column information: 'slugs'=>'Visible Titles'
* *************************************************************************@see WP_List_Table::::single_row_columns()
*/
function get_columns() {
$columns = array(
'cb' => '', // Render a checkbox instead of text
'status' => __( 'Auto Update', 'woo-feed' ),
'option_name' => __( 'Feed Name', 'woo-feed' ),
'provider' => __( 'Provider', 'woo-feed' ),
'type' => __( 'Type', 'woo-feed' ),
'url' => __( 'Feed URL', 'woo-feed' ),
'last_updated' => __( 'Last Updated', 'woo-feed' ),
'view' => __( 'Action', 'woo-feed' ),
);
return $columns;
}
/** ************************************************************************
* Optional. If you want one or more columns to be sortable (ASC/DESC toggle),
* you will need to register it here. This should return an array where the
* key is the column that needs to be sortable, and the value is db column to
* sort by. Often, the key and value will be the same, but this is not always
* the case (as the value is a column name from the database, not the list table).
*
* This method merely defines which columns should be sortable and makes them
* clickable - it does not handle the actual sorting. You still need to detect
* the ORDERBY and ORDER querystring variables within prepare_items() and sort
* your data accordingly (usually by modifying your query).
*
* @return array An associative array containing all the columns that should be sortable: 'slugs'=>array('data_values',bool)
**************************************************************************/
function get_sortable_columns() {
$sortable_columns = array(
'option_name' => array( 'option_name', false ),
);
return $sortable_columns;
}
/** ************************************************************************
* Optional. If you need to include bulk actions in your list table, this is
* the place to define them. Bulk actions are an associative array in the format
* 'slug'=>'Visible Title'
*
* If this method returns an empty value, no bulk action will be rendered. If
* you specify any bulk actions, the bulk actions box will be rendered with
* the table automatically on display().
*
* Also note that list tables are not automatically wrapped in