Commit 55a7c0fc authored by Varun Sridharan's avatar Varun Sridharan

Changes By Varun

* Fixed Count Notification Bubble Count
* Metabox Error While Creating New Order Via Admin
* Added Project & Doner Based Filter In Admin Listing
* Remodified WP LIST TABLE For Donation Listing
* New function to get user based donation ids get_user_donations_ids
* New template to list donations `myaccount/my-donations.php`
parent a1e127ca
...@@ -38,9 +38,10 @@ class WooCommerce_Quick_Donation_Admin_Function { ...@@ -38,9 +38,10 @@ class WooCommerce_Quick_Donation_Admin_Function {
public function add_wc_order_types($order_types,$type){ public function add_wc_order_types($order_types,$type){
$order_type = $order_types; $order_type = $order_types;
global $post_type;
if('' == $type){ if('' == $type){
$order_type[] = WC_QD_PT; $order_type[] = WC_QD_PT;
$order_type[] = 'wc_qd_orders'; $order_type[] = 'wcqd_project';
} }
return $order_type; return $order_type;
} }
......
...@@ -69,16 +69,29 @@ class WooCommerce_Quick_Donation_Admin { ...@@ -69,16 +69,29 @@ class WooCommerce_Quick_Donation_Admin {
public function add_donation_notification_bubble() { public function add_donation_notification_bubble() {
global $submenu; global $submenu;
$c = $this->get_status_count();
if(isset($submenu['edit.php?post_type='.WC_QD_PT])){ if(isset($submenu['edit.php?post_type='.WC_QD_PT])){
foreach($submenu['edit.php?post_type='.WC_QD_PT] as $menuK => $menu){ foreach($submenu['edit.php?post_type='.WC_QD_PT] as $menuK => $menu){
if($menu[2] === 'wc_qd_orders' ){ if($menu[2] === 'wc_qd_orders' ){
$submenu['edit.php?post_type='.WC_QD_PT][$menuK][0] .= "<span class='update-plugins count-1'> $submenu['edit.php?post_type='.WC_QD_PT][$menuK][0] .= "<span class='update-plugins count-1'>
<span class='update-count'>0</span></span>"; <span class='update-count'>$c</span></span>";
} }
} }
} }
} }
private function get_status_count(){
$order_ids = WC_QD()->db()->get_donation_order_ids();
$count = 0;
foreach($order_ids as $id){
$order_status = get_post_status($id['donationid']);
if($order_status == 'wc-on-hold' || $order_status == 'wc-processing'){
$count++;
}
}
return $count;
}
/** /**
* Inits Admin Sttings * Inits Admin Sttings
*/ */
...@@ -95,7 +108,26 @@ class WooCommerce_Quick_Donation_Admin { ...@@ -95,7 +108,26 @@ class WooCommerce_Quick_Donation_Admin {
$order_ids = WC_QD()->db()->get_donation_order_ids(); $order_ids = WC_QD()->db()->get_donation_order_ids();
$order_ids = WC_QD()->db()->extract_donation_id($order_ids); $order_ids = WC_QD()->db()->extract_donation_id($order_ids);
$args = array('post_type' => 'shop_order', 'post_status' => array_keys(wc_get_order_statuses()),'post__in' => $order_ids ); $args = array('posts_per_page' => '0',
'post_type' => 'shop_order',
'post_status' => array_keys(wc_get_order_statuses()),
'post__in' => $order_ids
);
if(isset($_GET['paged'])){$args['paged'] = $_GET['paged']; }
if(isset($_GET['m'])){ $args['m'] = $_GET['m'];}
if(isset($_GET['_customer_user'])) {
$args['meta_query'][]['key'] = '_customer_user';
$args['meta_query'][]['value'] = $_GET['_customer_user'];
$args['meta_query'][]['compare'] = '=';
}
if(isset($_GET['dproj'])) {
$args['meta_query'][]['key'] = '_project_details';
$args['meta_query'][]['value'] = $_GET['dproj'];
$args['meta_query'][]['compare'] = '=';
}
$wp_query = new WP_Query($args); $wp_query = new WP_Query($args);
require('wp-donation-listing-table.php'); require('wp-donation-listing-table.php');
tt_render_list_page($wp_query); tt_render_list_page($wp_query);
......
...@@ -35,7 +35,7 @@ class WooCommerce_Quick_Donation_Admin_Order_Page_Functions { ...@@ -35,7 +35,7 @@ class WooCommerce_Quick_Donation_Admin_Order_Page_Functions {
*/ */
public function shop_order_columns( $existing_columns ) { public function shop_order_columns( $existing_columns ) {
$existingc = $existing_columns; $existingc = $existing_columns;
if("wcqd_project_page_wc_qd_orders" == WC_QD()->admin()->current_screen()){ if(isset($_REQUEST['page']) && "wc_qd_orders" == $_REQUEST['page']){
$existingc = ''; $existingc = '';
$existingc['cb'] = $existing_columns['cb']; $existingc['cb'] = $existing_columns['cb'];
$existingc['order_status'] = $existing_columns['order_status']; $existingc['order_status'] = $existing_columns['order_status'];
......
...@@ -192,6 +192,7 @@ class WC_Quick_Donation_Meta_Box_Order_Data { ...@@ -192,6 +192,7 @@ class WC_Quick_Donation_Meta_Box_Order_Data {
<h4><?php _e( 'General Details', 'woocommerce' ); ?></h4> <h4><?php _e( 'General Details', 'woocommerce' ); ?></h4>
<p class="form-field form-field-wide"><label for="order_date"><?php _e( 'Order date:', 'woocommerce' ) ?></label> <p class="form-field form-field-wide"><label for="order_date"><?php _e( 'Order date:', 'woocommerce' ) ?></label>
<input type="hidden" name="post_is_donation" value="TRUE"/>
<input type="text" class="date-picker" name="order_date" id="order_date" maxlength="10" value="<?php echo date_i18n( 'Y-m-d', strtotime( $post->post_date ) ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" />@<input type="text" class="hour" placeholder="<?php esc_attr_e( 'h', 'woocommerce' ) ?>" name="order_date_hour" id="order_date_hour" maxlength="2" size="2" value="<?php echo date_i18n( 'H', strtotime( $post->post_date ) ); ?>" pattern="\-?\d+(\.\d{0,})?" />:<input type="text" class="minute" placeholder="<?php esc_attr_e( 'm', 'woocommerce' ) ?>" name="order_date_minute" id="order_date_minute" maxlength="2" size="2" value="<?php echo date_i18n( 'i', strtotime( $post->post_date ) ); ?>" pattern="\-?\d+(\.\d{0,})?" /> <input type="text" class="date-picker" name="order_date" id="order_date" maxlength="10" value="<?php echo date_i18n( 'Y-m-d', strtotime( $post->post_date ) ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" />@<input type="text" class="hour" placeholder="<?php esc_attr_e( 'h', 'woocommerce' ) ?>" name="order_date_hour" id="order_date_hour" maxlength="2" size="2" value="<?php echo date_i18n( 'H', strtotime( $post->post_date ) ); ?>" pattern="\-?\d+(\.\d{0,})?" />:<input type="text" class="minute" placeholder="<?php esc_attr_e( 'm', 'woocommerce' ) ?>" name="order_date_minute" id="order_date_minute" maxlength="2" size="2" value="<?php echo date_i18n( 'i', strtotime( $post->post_date ) ); ?>" pattern="\-?\d+(\.\d{0,})?" />
</p> </p>
...@@ -344,8 +345,13 @@ class WC_Quick_Donation_Meta_Box_Order_Data { ...@@ -344,8 +345,13 @@ class WC_Quick_Donation_Meta_Box_Order_Data {
public static function save( $post_id, $post ) { public static function save( $post_id, $post ) {
global $wpdb; global $wpdb;
if(isset($_POST['post_is_donation'])){
self::init_address_fields(); self::init_address_fields();
// Add key // Add key
add_post_meta( $post_id, '_order_key', uniqid( 'order_' ), true ); add_post_meta( $post_id, '_order_key', uniqid( 'order_' ), true );
...@@ -402,4 +408,5 @@ class WC_Quick_Donation_Meta_Box_Order_Data { ...@@ -402,4 +408,5 @@ class WC_Quick_Donation_Meta_Box_Order_Data {
wc_delete_shop_order_transients( $post_id ); wc_delete_shop_order_transients( $post_id );
} }
}
} }
...@@ -8,39 +8,120 @@ ...@@ -8,39 +8,120 @@
* @access private * @access private
*/ */
class WC_Quick_Donation_Listing_Table extends WP_List_Table { class WC_Quick_Donation_Listing_Table extends WP_List_Table {
/**
* Whether the items should be displayed hierarchically or linearly
*
* @since 3.1.0
* @var bool
* @access protected
*/
protected $hierarchical_display; protected $hierarchical_display;
/**
* Holds the number of pending comments for each post
*
* @since 3.1.0
* @var int
* @access protected
*/
protected $comment_pending_count; protected $comment_pending_count;
/**
* Holds the number of posts for this user
*
* @since 3.1.0
* @var int
* @access private
*/
private $user_posts_count; private $user_posts_count;
/**
* Holds the number of posts which are sticky.
*
* @since 3.1.0
* @var int
* @access private
*/
private $sticky_posts_count = 0; private $sticky_posts_count = 0;
private $post_query;
public function __construct($query) { private $is_trash;
/**
* Current level for output.
*
* @since 4.3.0
* @access protected
* @var int
*/
protected $current_level = 0;
public $querypost ;
/**
* Constructor.
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @global object $post_type_object
* @global wpdb $wpdb
*
* @param array $args An associative array of arguments.
*/
public function __construct( $query,$args = array() ) {
global $post_type_object, $wpdb; global $post_type_object, $wpdb;
$this->querypost = $query;
set_current_screen( 'shop_order' );
parent::__construct( array( parent::__construct( array(
'plural' => 'posts', 'plural' => 'posts',
'screen' => get_current_screen(), 'screen' => get_current_screen(),
) ); ) );
$this->screen->post_type = 'shop_order'; $this->screen->post_type = 'shop_order';
$post_type = $this->screen->post_type; $post_type = $this->screen->post_type;
$post_type_object = get_post_type_object( $post_type ); $post_type_object = get_post_type_object( $post_type );
$this->user_posts_count = 0; $this->user_posts_count = 0;
$this->sticky_posts_count = 0; $this->sticky_posts_count = 0;
$this->post_query = $query;
} }
/**
* Sets whether the table layout should be hierarchical or not.
*
* @since 4.2.0
*
* @param bool $display Whether the table layout should be hierarchical.
*/
public function set_hierarchical_display( $display ) {
$this->hierarchical_display = $display;
}
/**
*
* @return bool
*/
public function ajax_user_can() { public function ajax_user_can() {
return current_user_can( get_post_type_object( $this->screen->post_type )->cap->edit_posts ); return current_user_can( get_post_type_object( $this->screen->post_type )->cap->edit_posts );
} }
/**
*
* @global array $avail_post_stati
* @global WP_Query $wp_query
* @global int $per_page
* @global string $mode
*/
public function prepare_items() { public function prepare_items() {
global $avail_post_stati, $per_page, $mode; global $avail_post_stati, $per_page, $mode;
$avail_post_stati = wp_edit_posts_query(); $avail_post_stati = wp_edit_posts_query();
$this->hierarchical_display = ( is_post_type_hierarchical( $this->screen->post_type ) && 'menu_order title' == $this->post_query->query['orderby'] ); $this->set_hierarchical_display( is_post_type_hierarchical( $this->screen->post_type ) && 'menu_order title' == $this->querypost->query['orderby'] );
$total_items = $this->hierarchical_display ? $this->post_query->post_count : $this->post_query->found_posts; $total_items = $this->hierarchical_display ? $this->querypost->post_count : $this->querypost->found_posts;
$post_type = $this->screen->post_type; $post_type = $this->screen->post_type;
$per_page = $this->get_items_per_page( 'edit_' . $post_type . '_per_page' ); $per_page = $this->get_items_per_page( 'edit_' . $post_type . '_per_page' );
...@@ -51,7 +132,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -51,7 +132,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
if ( $this->hierarchical_display ) if ( $this->hierarchical_display )
$total_pages = ceil( $total_items / $per_page ); $total_pages = ceil( $total_items / $per_page );
else else
$total_pages = $this->post_query->max_num_pages; $total_pages = $this->querypost->max_num_pages;
if ( ! empty( $_REQUEST['mode'] ) ) { if ( ! empty( $_REQUEST['mode'] ) ) {
$mode = $_REQUEST['mode'] == 'excerpt' ? 'excerpt' : 'list'; $mode = $_REQUEST['mode'] == 'excerpt' ? 'excerpt' : 'list';
...@@ -59,10 +140,6 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -59,10 +140,6 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
} else { } else {
$mode = get_user_setting ( 'posts_list_mode', 'list' ); $mode = get_user_setting ( 'posts_list_mode', 'list' );
} }
$columns = $this->get_columns();
$hidden = array();
$sortable = $this->get_sortable_columns();
$this->_column_headers = array($columns, $hidden, $sortable);
$this->is_trash = isset( $_REQUEST['post_status'] ) && $_REQUEST['post_status'] == 'trash'; $this->is_trash = isset( $_REQUEST['post_status'] ) && $_REQUEST['post_status'] == 'trash';
...@@ -73,10 +150,17 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -73,10 +150,17 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
) ); ) );
} }
/**
*
* @return bool
*/
public function has_items() { public function has_items() {
return have_posts(); return $this->querypost->have_posts();
} }
/**
* @access public
*/
public function no_items() { public function no_items() {
if ( isset( $_REQUEST['post_status'] ) && 'trash' == $_REQUEST['post_status'] ) if ( isset( $_REQUEST['post_status'] ) && 'trash' == $_REQUEST['post_status'] )
echo get_post_type_object( $this->screen->post_type )->labels->not_found_in_trash; echo get_post_type_object( $this->screen->post_type )->labels->not_found_in_trash;
...@@ -84,6 +168,52 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -84,6 +168,52 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
echo get_post_type_object( $this->screen->post_type )->labels->not_found; echo get_post_type_object( $this->screen->post_type )->labels->not_found;
} }
/**
* Determine if the current view is the "All" view.
*
* @since 4.2.0
*
* @return bool Whether the current view is the "All" view.
*/
protected function is_base_request() {
if ( empty( $_GET ) ) {
return true;
} elseif ( 1 === count( $_GET ) && ! empty( $_GET['post_type'] ) ) {
return $this->screen->post_type === $_GET['post_type'];
}
}
function wp_count_posts( $type = 'post', $perm = '' ) {
global $wpdb;
if ( ! post_type_exists( $type ) )
return new stdClass;
$cache_key = _count_posts_cache_key( $type.'_donation', $perm );
$counts = wp_cache_get( $cache_key, 'counts' );
if ( false !== $counts ) {return $counts;}
$query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} ";
$query .= "LEFT JOIN {$wpdb->postmeta} ON wp_postmeta.post_id = wp_posts.ID ";
$query .= 'WHERE wp_postmeta.meta_key = "_is_donation" AND wp_postmeta.meta_value = 1 AND post_type = %s ';
$query .= 'GROUP BY post_status ';
$results = (array) $wpdb->get_results( $wpdb->prepare( $query, $type ), ARRAY_A );
$counts = array_fill_keys( get_post_stati(), 0 );
foreach ( $results as $row ) {$counts[ $row['post_status'] ] = $row['num_posts'];}
$counts = (object) $counts;
wp_cache_set( $cache_key.'_donation', $counts, 'counts' );
return $counts;
}
/**
*
* @global array $locked_post_status This seems to be deprecated.
* @global array $avail_post_stati
* @return array
*/
protected function get_views() { protected function get_views() {
global $locked_post_status, $avail_post_stati; global $locked_post_status, $avail_post_stati;
...@@ -93,7 +223,8 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -93,7 +223,8 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
return array(); return array();
$status_links = array(); $status_links = array();
$num_posts = wp_count_posts( $post_type, 'readable' ); $num_posts = $this->wp_count_posts( $post_type, 'readable' );
$class = ''; $class = '';
$allposts = ''; $allposts = '';
...@@ -104,6 +235,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -104,6 +235,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$class = ' class="current"'; $class = ' class="current"';
$status_links['mine'] = "<a href='edit.php?post_type=$post_type&author=$current_user_id'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $this->user_posts_count, 'posts' ), number_format_i18n( $this->user_posts_count ) ) . '</a>'; $status_links['mine'] = "<a href='edit.php?post_type=$post_type&author=$current_user_id'$class>" . sprintf( _nx( 'Mine <span class="count">(%s)</span>', 'Mine <span class="count">(%s)</span>', $this->user_posts_count, 'posts' ), number_format_i18n( $this->user_posts_count ) ) . '</a>';
$allposts = '&all_posts=1'; $allposts = '&all_posts=1';
$class = '';
} }
$total_posts = array_sum( (array) $num_posts ); $total_posts = array_sum( (array) $num_posts );
...@@ -112,8 +244,21 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -112,8 +244,21 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
foreach ( get_post_stati( array('show_in_admin_all_list' => false) ) as $state ) foreach ( get_post_stati( array('show_in_admin_all_list' => false) ) as $state )
$total_posts -= $num_posts->$state; $total_posts -= $num_posts->$state;
$class = empty( $class ) && empty( $_REQUEST['post_status'] ) && empty( $_REQUEST['show_sticky'] ) ? ' class="current"' : ''; if ( empty( $class ) && ( ( $this->is_base_request() && ! $this->user_posts_count ) || isset( $_REQUEST['all_posts'] ) ) ) {
$status_links['all'] = "<a href='edit.php?post_type=$post_type{$allposts}'$class>" . sprintf( _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . '</a>'; $class = ' class="current"';
}
$all_inner_html = sprintf(
_nx(
'All <span class="count">(%s)</span>',
'All <span class="count">(%s)</span>',
$total_posts,
'posts'
),
number_format_i18n( $total_posts )
);
$status_links['all'] = "<a href='edit.php?post_type=$post_type{$allposts}'$class>" . $all_inner_html . '</a>';
foreach ( get_post_stati(array('show_in_admin_status_list' => true), 'objects') as $status ) { foreach ( get_post_stati(array('show_in_admin_status_list' => true), 'objects') as $status ) {
$class = ''; $class = '';
...@@ -145,6 +290,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -145,6 +290,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
return $status_links; return $status_links;
} }
/**
*
* @return array
*/
protected function get_bulk_actions() { protected function get_bulk_actions() {
$actions = array(); $actions = array();
$post_type_obj = get_post_type_object( $this->screen->post_type ); $post_type_obj = get_post_type_object( $this->screen->post_type );
...@@ -166,6 +315,27 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -166,6 +315,27 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
return $actions; return $actions;
} }
public function get_donation_projects(){
$args = array(
'post_type' => WC_QD_PT,
'post_status' => 'publish',
'ignore_sticky_posts' => 0,
'posts_per_page' => '0',
'fields' => 'ids'
);
$products = new WP_Query($args);
echo '<select name="dproj" id="donation_project" class="wc-enhanced-select">';
echo '<option value=""> '.__('Donation Project',WC_QD_TXT).'</option>';
foreach($products->get_posts() as $id){
$attr = '';
if(isset($_GET['dproj']) && $id == $_GET['dproj']){ $attr = 'selected';}
echo '<option value="'.$id.'" '.$attr.'> '.get_the_title($id).'</option>';
}
echo '</select>';
}
/** /**
* @global int $cat * @global int $cat
* @param string $which * @param string $which
...@@ -192,7 +362,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -192,7 +362,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
echo '<label class="screen-reader-text" for="cat">' . __( 'Filter by category' ) . '</label>'; echo '<label class="screen-reader-text" for="cat">' . __( 'Filter by category' ) . '</label>';
wp_dropdown_categories( $dropdown_options ); wp_dropdown_categories( $dropdown_options );
} }
$this->get_donation_projects();
/** /**
* Fires before the Filter button on the Posts and Pages list tables. * Fires before the Filter button on the Posts and Pages list tables.
* *
...@@ -214,6 +384,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -214,6 +384,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
<?php <?php
} }
/**
*
* @return string
*/
public function current_action() { public function current_action() {
if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
return 'delete_all'; return 'delete_all';
...@@ -234,10 +408,18 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -234,10 +408,18 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$this->view_switcher( $mode ); $this->view_switcher( $mode );
} }
/**
*
* @return array
*/
protected function get_table_classes() { protected function get_table_classes() {
return array( 'widefat', 'fixed', is_post_type_hierarchical( $this->screen->post_type ) ? 'pages' : 'posts' ); return array( 'widefat', 'fixed', 'striped', is_post_type_hierarchical( $this->screen->post_type ) ? 'pages' : 'posts' );
} }
/**
*
* @return array
*/
public function get_columns() { public function get_columns() {
$post_type = $this->screen->post_type; $post_type = $this->screen->post_type;
...@@ -282,7 +464,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -282,7 +464,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all'; $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all';
if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) ) if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) )
$posts_columns['comments'] = '<span class="vers"><span title="' . esc_attr__( 'Comments' ) . '" class="comment-grey-bubble"></span></span>'; $posts_columns['comments'] = '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>';
$posts_columns['date'] = __( 'Date' ); $posts_columns['date'] = __( 'Date' );
...@@ -318,11 +500,13 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -318,11 +500,13 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* *
* @param array $post_columns An array of column names. * @param array $post_columns An array of column names.
*/ */
$posts_columns = apply_filters( "manage_{$post_type}_posts_columns", $posts_columns ); return apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );
return $posts_columns;
} }
/**
*
* @return array
*/
protected function get_sortable_columns() { protected function get_sortable_columns() {
return array( return array(
'title' => 'title', 'title' => 'title',
...@@ -339,10 +523,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -339,10 +523,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* @param int $level * @param int $level
*/ */
public function display_rows( $posts = array(), $level = 0 ) { public function display_rows( $posts = array(), $level = 0 ) {
global $wp_query, $per_page; global $per_page;
if ( empty( $posts ) ) if ( empty( $posts ) )
$posts = $this->post_query->posts; $posts = $this->querypost->posts;
add_filter( 'the_title', 'esc_html' ); add_filter( 'the_title', 'esc_html' );
...@@ -375,10 +559,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -375,10 +559,10 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
/** /**
* @global wpdb $wpdb * @global wpdb $wpdb
* @global WP_Post $post
* @param array $pages * @param array $pages
* @param int $pagenum * @param int $pagenum
* @param int $per_page * @param int $per_page
* @return bool|null
*/ */
private function _display_rows_hierarchical( $pages, $pagenum = 1, $per_page = 20 ) { private function _display_rows_hierarchical( $pages, $pagenum = 1, $per_page = 20 ) {
global $wpdb; global $wpdb;
...@@ -389,7 +573,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -389,7 +573,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$pages = get_pages( array( 'sort_column' => 'menu_order' ) ); $pages = get_pages( array( 'sort_column' => 'menu_order' ) );
if ( ! $pages ) if ( ! $pages )
return false; return;
} }
/* /*
...@@ -409,7 +593,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -409,7 +593,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
// Catch and repair bad pages. // Catch and repair bad pages.
if ( $page->post_parent == $page->ID ) { if ( $page->post_parent == $page->ID ) {
$page->post_parent = 0; $page->post_parent = 0;
$this->post_query->update( $this->post_query->posts, array( 'post_parent' => 0 ), array( 'ID' => $page->ID ) ); $wpdb->update( $wpdb->posts, array( 'post_parent' => 0 ), array( 'ID' => $page->ID ) );
clean_post_cache( $page ); clean_post_cache( $page );
} }
...@@ -425,20 +609,20 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -425,20 +609,20 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$count = 0; $count = 0;
$start = ( $pagenum - 1 ) * $per_page; $start = ( $pagenum - 1 ) * $per_page;
$end = $start + $per_page; $end = $start + $per_page;
$to_display = array();
foreach ( $pages as $page ) { foreach ( $pages as $page ) {
if ( $count >= $end ) if ( $count >= $end )
break; break;
if ( $count >= $start ) { if ( $count >= $start ) {
echo "\t"; $to_display[$page->ID] = $level;
$this->single_row( $page, $level );
} }
$count++; $count++;
if ( isset( $children_pages ) ) if ( isset( $children_pages ) )
$this->_page_rows( $children_pages, $count, $page->ID, $level + 1, $pagenum, $per_page ); $this->_page_rows( $children_pages, $count, $page->ID, $level + 1, $pagenum, $per_page, $to_display );
} }
// If it is the last pagenum and there are orphaned pages, display them with paging as well. // If it is the last pagenum and there are orphaned pages, display them with paging as well.
...@@ -449,14 +633,25 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -449,14 +633,25 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
break; break;
if ( $count >= $start ) { if ( $count >= $start ) {
echo "\t"; $to_display[$op->ID] = 0;
$this->single_row( $op, 0 );
} }
$count++; $count++;
} }
} }
} }
$ids = array_keys( $to_display );
_prime_post_caches( $ids );
if ( ! isset( $GLOBALS['post'] ) ) {
$GLOBALS['post'] = reset( $ids );
}
foreach ( $to_display as $page_id => $level ) {
echo "\t";
$this->single_row( $page_id, $level );
}
} }
/** /**
...@@ -464,6 +659,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -464,6 +659,7 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* together with paging support * together with paging support
* *
* @since 3.1.0 (Standalone function exists since 2.6.0) * @since 3.1.0 (Standalone function exists since 2.6.0)
* @since 4.2.0 Added the `$to_display` parameter.
* *
* @param array $children_pages * @param array $children_pages
* @param int $count * @param int $count
...@@ -471,9 +667,9 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -471,9 +667,9 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* @param int $level * @param int $level
* @param int $pagenum * @param int $pagenum
* @param int $per_page * @param int $per_page
* @param array $to_display List of pages to be displayed. Passed by reference.
*/ */
private function _page_rows( &$children_pages, &$count, $parent, $level, $pagenum, $per_page ) { private function _page_rows( &$children_pages, &$count, $parent, $level, $pagenum, $per_page, &$to_display ) {
if ( ! isset( $children_pages[$parent] ) ) if ( ! isset( $children_pages[$parent] ) )
return; return;
...@@ -481,7 +677,6 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -481,7 +677,6 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$end = $start + $per_page; $end = $start + $per_page;
foreach ( $children_pages[$parent] as $page ) { foreach ( $children_pages[$parent] as $page ) {
if ( $count >= $end ) if ( $count >= $end )
break; break;
...@@ -490,7 +685,13 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -490,7 +685,13 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
$my_parents = array(); $my_parents = array();
$my_parent = $page->post_parent; $my_parent = $page->post_parent;
while ( $my_parent ) { while ( $my_parent ) {
$my_parent = get_post( $my_parent ); // Get the ID from the list or the attribute if my_parent is an object
$parent_id = $my_parent;
if ( is_object( $my_parent ) ) {
$parent_id = $my_parent->ID;
}
$my_parent = get_post( $parent_id );
$my_parents[] = $my_parent; $my_parents[] = $my_parent;
if ( !$my_parent->post_parent ) if ( !$my_parent->post_parent )
break; break;
...@@ -498,109 +699,85 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -498,109 +699,85 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
} }
$num_parents = count( $my_parents ); $num_parents = count( $my_parents );
while ( $my_parent = array_pop( $my_parents ) ) { while ( $my_parent = array_pop( $my_parents ) ) {
echo "\t"; $to_display[$my_parent->ID] = $level - $num_parents;
$this->single_row( $my_parent, $level - $num_parents );
$num_parents--; $num_parents--;
} }
} }
if ( $count >= $start ) { if ( $count >= $start ) {
echo "\t"; $to_display[$page->ID] = $level;
$this->single_row( $page, $level );
} }
$count++; $count++;
$this->_page_rows( $children_pages, $count, $page->ID, $level + 1, $pagenum, $per_page ); $this->_page_rows( $children_pages, $count, $page->ID, $level + 1, $pagenum, $per_page, $to_display );
} }
unset( $children_pages[$parent] ); //required in order to keep track of orphans unset( $children_pages[$parent] ); //required in order to keep track of orphans
} }
/** /**
* @global string $mode * Handles the checkbox column output.
* @staticvar string $alternate *
* @param WP_Post $post * @since 4.3.0
* @param int $level * @access public
*
* @param WP_Post $post The current WP_Post object.
*/ */
public function single_row( $post, $level = 0 ) { public function column_cb( $post ) {
global $mode; if ( current_user_can( 'edit_post', $post->ID ) ): ?>
static $alternate; <label class="screen-reader-text" for="cb-select-<?php the_ID(); ?>"><?php
printf( __( 'Select %s' ), _draft_or_post_title() );
$global_post = get_post(); ?></label>
$GLOBALS['post'] = $post; <input id="cb-select-<?php the_ID(); ?>" type="checkbox" name="post[]" value="<?php the_ID(); ?>" />
setup_postdata( $post ); <div class="locked-indicator"></div>
<?php endif;
$edit_link = get_edit_post_link( $post->ID );
$title = _draft_or_post_title();
$post_type_object = get_post_type_object( $post->post_type );
$can_edit_post = current_user_can( 'edit_post', $post->ID );
$alternate = 'alternate' == $alternate ? '' : 'alternate';
$classes = $alternate . ' iedit author-' . ( get_current_user_id() == $post->post_author ? 'self' : 'other' );
$lock_holder = wp_check_post_lock( $post->ID );
if ( $lock_holder ) {
$classes .= ' wp-locked';
$lock_holder = get_userdata( $lock_holder );
} }
if ( $post->post_parent ) { /**
$count = count( get_post_ancestors( $post->ID ) ); * @since 4.3.0
$classes .= ' level-'. $count; * @access protected
} else { *
$classes .= ' level-0'; * @param WP_Post $post
* @param string $classes
* @param string $data
* @param string $primary
*/
protected function _column_title( $post, $classes, $data, $primary ) {
echo '<td class="' . $classes . ' page-title" ', $data, '>';
echo $this->column_title( $post );
echo $this->handle_row_actions( $post, 'title', $primary );
echo '</td>';
} }
?>
<tr id="post-<?php echo $post->ID; ?>" class="<?php echo implode( ' ', get_post_class( $classes, $post->ID ) ); ?>">
<?php
list( $columns, $hidden ) = $this->get_column_info();
foreach ( $columns as $column_name => $column_display_name ) { /**
$class = "class=\"$column_name column-$column_name\""; * Handles the title column output.
*
$style = ''; * @since 4.3.0
if ( in_array( $column_name, $hidden ) ) * @access public
$style = ' style="display:none;"'; *
* @global string $mode
$attributes = "$class$style"; *
* @param WP_Post $post The current WP_Post object.
switch ( $column_name ) { */
public function column_title( $post ) {
case 'cb': global $mode;
?>
<th scope="row" class="check-column">
<?php
if ( $can_edit_post ) {
?>
<label class="screen-reader-text" for="cb-select-<?php the_ID(); ?>"><?php printf( __( 'Select %s' ), $title ); ?></label>
<input id="cb-select-<?php the_ID(); ?>" type="checkbox" name="post[]" value="<?php the_ID(); ?>" />
<div class="locked-indicator"></div>
<?php
}
?>
</th>
<?php
break;
case 'title':
$attributes = 'class="post-title page-title column-title"' . $style;
if ( $this->hierarchical_display ) { if ( $this->hierarchical_display ) {
if ( 0 == $level && (int) $post->post_parent > 0 ) { if ( 0 === $this->current_level && (int) $post->post_parent > 0 ) {
// Sent level 0 by accident, by default, or because we don't know the actual level. // Sent level 0 by accident, by default, or because we don't know the actual level.
$find_main_page = (int) $post->post_parent; $find_main_page = (int) $post->post_parent;
while ( $find_main_page > 0 ) { while ( $find_main_page > 0 ) {
$parent = get_post( $find_main_page ); $parent = get_post( $find_main_page );
if ( is_null( $parent ) ) if ( is_null( $parent ) ) {
break; break;
}
$level++; $this->current_level++;
$find_main_page = (int) $parent->post_parent; $find_main_page = (int) $parent->post_parent;
if ( !isset( $parent_name ) ) { if ( ! isset( $parent_name ) ) {
/** This filter is documented in wp-includes/post-template.php */ /** This filter is documented in wp-includes/post-template.php */
$parent_name = apply_filters( 'the_title', $parent->post_title, $parent->ID ); $parent_name = apply_filters( 'the_title', $parent->post_title, $parent->ID );
} }
...@@ -608,29 +785,38 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -608,29 +785,38 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
} }
} }
$pad = str_repeat( '&#8212; ', $level ); $pad = str_repeat( '&#8212; ', $this->current_level );
echo "<td $attributes><strong>"; echo "<strong>";
if ( $format = get_post_format( $post->ID ) ) { $format = get_post_format( $post->ID );
if ( $format ) {
$label = get_post_format_string( $format ); $label = get_post_format_string( $format );
echo '<a href="' . esc_url( add_query_arg( array( 'post_format' => $format, 'post_type' => $post->post_type ), 'edit.php' ) ) . '" class="post-state-format post-format-icon post-format-' . $format . '" title="' . $label . '">' . $label . ":</a> "; echo '<a href="' . esc_url( add_query_arg( array( 'post_format' => $format, 'post_type' => $post->post_type ), 'edit.php' ) ) . '" class="post-state-format post-format-icon post-format-' . $format . '" title="' . $label . '">' . $label . ":</a> ";
} }
$can_edit_post = current_user_can( 'edit_post', $post->ID );
$title = _draft_or_post_title();
if ( $can_edit_post && $post->post_status != 'trash' ) { if ( $can_edit_post && $post->post_status != 'trash' ) {
$edit_link = get_edit_post_link( $post->ID );
echo '<a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . $pad . $title . '</a>'; echo '<a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . $pad . $title . '</a>';
} else { } else {
echo $pad . $title; echo $pad . $title;
} }
_post_states( $post ); _post_states( $post );
if ( isset( $parent_name ) ) if ( isset( $parent_name ) ) {
$post_type_object = get_post_type_object( $post->post_type );
echo ' | ' . $post_type_object->labels->parent_item_colon . ' ' . esc_html( $parent_name ); echo ' | ' . $post_type_object->labels->parent_item_colon . ' ' . esc_html( $parent_name );
}
echo "</strong>\n"; echo "</strong>\n";
if ( $can_edit_post && $post->post_status != 'trash' ) { if ( $can_edit_post && $post->post_status != 'trash' ) {
$lock_holder = wp_check_post_lock( $post->ID );
if ( $lock_holder ) { if ( $lock_holder ) {
$lock_holder = get_userdata( $lock_holder );
$locked_avatar = get_avatar( $lock_holder->ID, 18 ); $locked_avatar = get_avatar( $lock_holder->ID, 18 );
$locked_text = esc_html( sprintf( __( '%s is currently editing' ), $lock_holder->display_name ) ); $locked_text = esc_html( sprintf( __( '%s is currently editing' ), $lock_holder->display_name ) );
} else { } else {
...@@ -640,93 +826,44 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -640,93 +826,44 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
echo '<div class="locked-info"><span class="locked-avatar">' . $locked_avatar . '</span> <span class="locked-text">' . $locked_text . "</span></div>\n"; echo '<div class="locked-info"><span class="locked-avatar">' . $locked_avatar . '</span> <span class="locked-text">' . $locked_text . "</span></div>\n";
} }
if ( ! $this->hierarchical_display && 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) ) if ( ! is_post_type_hierarchical( $this->screen->post_type ) && 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) ) {
the_excerpt(); the_excerpt();
$actions = array();
if ( $can_edit_post && 'trash' != $post->post_status ) {
$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr__( 'Edit this item' ) . '">' . __( 'Edit' ) . '</a>';
$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr__( 'Edit this item inline' ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
}
if ( current_user_can( 'delete_post', $post->ID ) ) {
if ( 'trash' == $post->post_status )
$actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash' ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
elseif ( EMPTY_TRASH_DAYS )
$actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash' ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
$actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently' ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
}
if ( $post_type_object->public ) {
if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) {
if ( $can_edit_post ) {
$preview_link = set_url_scheme( get_permalink( $post->ID ) );
/** This filter is documented in wp-admin/includes/meta-boxes.php */
$preview_link = apply_filters( 'preview_post_link', add_query_arg( 'preview', 'true', $preview_link ), $post );
$actions['view'] = '<a href="' . esc_url( $preview_link ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
}
} elseif ( 'trash' != $post->post_status ) {
$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
}
} }
if ( is_post_type_hierarchical( $post->post_type ) ) { get_inline_data( $post );
}
/**
* Filter the array of row action links on the Pages list table.
*
* The filter is evaluated only for hierarchical post types.
*
* @since 2.8.0
*
* @param array $actions An array of row action links. Defaults are
* 'Edit', 'Quick Edit', 'Restore, 'Trash',
* 'Delete Permanently', 'Preview', and 'View'.
* @param WP_Post $post The post object.
*/
$actions = apply_filters( 'page_row_actions', $actions, $post );
} else {
/** /**
* Filter the array of row action links on the Posts list table. * Handles the post date column output.
* *
* The filter is evaluated only for non-hierarchical post types. * @since 4.3.0
* @access public
* *
* @since 2.8.0 * @global string $mode
* *
* @param array $actions An array of row action links. Defaults are * @param WP_Post $post The current WP_Post object.
* 'Edit', 'Quick Edit', 'Restore, 'Trash',
* 'Delete Permanently', 'Preview', and 'View'.
* @param WP_Post $post The post object.
*/ */
$actions = apply_filters( 'post_row_actions', $actions, $post ); public function column_date( $post ) {
} global $mode;
echo $this->row_actions( $actions );
get_inline_data( $post );
echo '</td>';
break;
case 'date':
if ( '0000-00-00 00:00:00' == $post->post_date ) { if ( '0000-00-00 00:00:00' == $post->post_date ) {
$t_time = $h_time = __( 'Unpublished' ); $t_time = $h_time = __( 'Unpublished' );
$time_diff = 0; $time_diff = 0;
} else { } else {
$t_time = get_the_time( __( 'Y/m/d g:i:s A' ) ); $t_time = get_the_time( __( 'Y/m/d g:i:s a' ) );
$m_time = $post->post_date; $m_time = $post->post_date;
$time = get_post_time( 'G', true, $post ); $time = get_post_time( 'G', true, $post );
$time_diff = time() - $time; $time_diff = time() - $time;
if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) if ( $time_diff > 0 && $time_diff < DAY_IN_SECONDS ) {
$h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) ); $h_time = sprintf( __( '%s ago' ), human_time_diff( $time ) );
else } else {
$h_time = mysql2date( __( 'Y/m/d' ), $m_time ); $h_time = mysql2date( __( 'Y/m/d' ), $m_time );
} }
}
echo '<td ' . $attributes . '>';
if ( 'excerpt' == $mode ) { if ( 'excerpt' == $mode ) {
/** /**
* Filter the published time of the post. * Filter the published time of the post.
* *
...@@ -741,68 +878,90 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -741,68 +878,90 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* @param string $column_name The column name. * @param string $column_name The column name.
* @param string $mode The list display mode ('excerpt' or 'list'). * @param string $mode The list display mode ('excerpt' or 'list').
*/ */
echo apply_filters( 'post_date_column_time', $t_time, $post, $column_name, $mode ); echo apply_filters( 'post_date_column_time', $t_time, $post, 'date', $mode );
} else { } else {
/** This filter is documented in wp-admin/includes/class-wp-posts-list-table.php */ /** This filter is documented in wp-admin/includes/class-wp-posts-list-table.php */
echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, $column_name, $mode ) . '</abbr>'; echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post, 'date', $mode ) . '</abbr>';
} }
echo '<br />'; echo '<br />';
if ( 'publish' == $post->post_status ) { if ( 'publish' == $post->post_status ) {
_e( 'Published' ); _e( 'Published' );
} elseif ( 'future' == $post->post_status ) { } elseif ( 'future' == $post->post_status ) {
if ( $time_diff > 0 ) if ( $time_diff > 0 ) {
echo '<strong class="attention">' . __( 'Missed schedule' ) . '</strong>'; echo '<strong class="error-message">' . __( 'Missed schedule' ) . '</strong>';
else } else {
_e( 'Scheduled' ); _e( 'Scheduled' );
}
} else { } else {
_e( 'Last Modified' ); _e( 'Last Modified' );
} }
echo '</td>'; }
break;
case 'comments': /**
* Handles the comments column output.
*
* @since 4.3.0
* @access public
*
* @param WP_Post $post The current WP_Post object.
*/
public function column_comments( $post ) {
?> ?>
<td <?php echo $attributes ?>><div class="post-com-count-wrapper"> <div class="post-com-count-wrapper">
<?php <?php
$pending_comments = isset( $this->comment_pending_count[$post->ID] ) ? $this->comment_pending_count[$post->ID] : 0; $pending_comments = isset( $this->comment_pending_count[$post->ID] ) ? $this->comment_pending_count[$post->ID] : 0;
$this->comments_bubble( $post->ID, $pending_comments ); $this->comments_bubble( $post->ID, $pending_comments );
?> ?>
</div></td> </div>
<?php <?php
break; }
case 'author': /**
?> * Handles the post author column output.
<td <?php echo $attributes ?>><?php *
* @since 4.3.0
* @access public
*
* @param WP_Post $post The current WP_Post object.
*/
public function column_author( $post ) {
printf( '<a href="%s">%s</a>', printf( '<a href="%s">%s</a>',
esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'author' => get_the_author_meta( 'ID' ) ), 'edit.php' )), esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'author' => get_the_author_meta( 'ID' ) ), 'edit.php' )),
get_the_author() get_the_author()
); );
?></td> }
<?php
break;
default: /**
if ( 'categories' == $column_name ) * Handles the default column output.
*
* @since 4.3.0
* @access public
*
* @param WP_Post $post The current WP_Post object.
* @param string $column_name The current column name.
*/
public function column_default( $post, $column_name ) {
if ( 'categories' == $column_name ) {
$taxonomy = 'category'; $taxonomy = 'category';
elseif ( 'tags' == $column_name ) } elseif ( 'tags' == $column_name ) {
$taxonomy = 'post_tag'; $taxonomy = 'post_tag';
elseif ( 0 === strpos( $column_name, 'taxonomy-' ) ) } elseif ( 0 === strpos( $column_name, 'taxonomy-' ) ) {
$taxonomy = substr( $column_name, 9 ); $taxonomy = substr( $column_name, 9 );
else } else {
$taxonomy = false; $taxonomy = false;
}
if ( $taxonomy ) { if ( $taxonomy ) {
$taxonomy_object = get_taxonomy( $taxonomy ); $taxonomy_object = get_taxonomy( $taxonomy );
echo '<td ' . $attributes . '>'; $terms = get_the_terms( $post->ID, $taxonomy );
if ( $terms = get_the_terms( $post->ID, $taxonomy ) ) { if ( is_array( $terms ) ) {
$out = array(); $out = array();
foreach ( $terms as $t ) { foreach ( $terms as $t ) {
$posts_in_term_qv = array(); $posts_in_term_qv = array();
if ( 'post' != $post->post_type ) if ( 'post' != $post->post_type ) {
$posts_in_term_qv['post_type'] = $post->post_type; $posts_in_term_qv['post_type'] = $post->post_type;
}
if ( $taxonomy_object->query_var ) { if ( $taxonomy_object->query_var ) {
$posts_in_term_qv[ $taxonomy_object->query_var ] = $t->slug; $posts_in_term_qv[ $taxonomy_object->query_var ] = $t->slug;
} else { } else {
...@@ -818,13 +977,11 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -818,13 +977,11 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
/* translators: used between list items, there is a space after the comma */ /* translators: used between list items, there is a space after the comma */
echo join( __( ', ' ), $out ); echo join( __( ', ' ), $out );
} else { } else {
echo '&#8212;'; echo '<span aria-hidden="true">&#8212;</span><span class="screen-reader-text">' . $taxonomy_object->labels->no_terms . '</span>';
} }
echo '</td>'; return;
break;
} }
?>
<td <?php echo $attributes ?>><?php
if ( is_post_type_hierarchical( $post->post_type ) ) { if ( is_post_type_hierarchical( $post->post_type ) ) {
/** /**
...@@ -865,443 +1022,77 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table { ...@@ -865,443 +1022,77 @@ class WC_Quick_Donation_Listing_Table extends WP_List_Table {
* @param string $column_name The name of the column to display. * @param string $column_name The name of the column to display.
* @param int $post_id The current post ID. * @param int $post_id The current post ID.
*/ */
do_action( "manage_{$post->post_type}_posts_custom_column", $column_name, $post->ID ); do_action( "manage_{$post->post_type}_posts_custom_column", $column_name, $post->ID );
?></td>
<?php
break;
}
}
?>
</tr>
<?php
$GLOBALS['post'] = $global_post;
} }
/** /**
* Outputs the hidden row displayed when inline editing * @global WP_Post $post
* *
* @since 3.1.0 * @param int|WP_Post $post
* @param int $level
*/ */
public function inline_edit() { public function single_row( $post, $level = 0 ) {
global $mode; $global_post = get_post();
$screen = $this->screen;
$post = get_default_post_to_edit( $screen->post_type ); $post = get_post( $post );
$post_type_object = get_post_type_object( $screen->post_type ); $this->current_level = $level;
$taxonomy_names = get_object_taxonomies( $screen->post_type ); $GLOBALS['post'] = $post;
$hierarchical_taxonomies = array(); setup_postdata( $post );
$flat_taxonomies = array();
foreach ( $taxonomy_names as $taxonomy_name ) {
$taxonomy = get_taxonomy( $taxonomy_name );
if ( !$taxonomy->show_ui ) $classes = 'iedit author-' . ( get_current_user_id() == $post->post_author ? 'self' : 'other' );
continue;
if ( $taxonomy->hierarchical ) $lock_holder = wp_check_post_lock( $post->ID );
$hierarchical_taxonomies[] = $taxonomy; if ( $lock_holder ) {
else $classes .= ' wp-locked';
$flat_taxonomies[] = $taxonomy;
} }
$m = ( isset( $mode ) && 'excerpt' == $mode ) ? 'excerpt' : 'list'; if ( $post->post_parent ) {
$can_publish = current_user_can( $post_type_object->cap->publish_posts ); $count = count( get_post_ancestors( $post->ID ) );
$core_columns = array( 'cb' => true, 'date' => true, 'title' => true, 'categories' => true, 'tags' => true, 'comments' => true, 'author' => true ); $classes .= ' level-'. $count;
} else {
?> $classes .= ' level-0';
}
<form method="get" action=""><table style="display: none"><tbody id="inlineedit">
<?php
$hclass = count( $hierarchical_taxonomies ) ? 'post' : 'page';
$bulk = 0;
while ( $bulk < 2 ) { ?>
<tr id="<?php echo $bulk ? 'bulk-edit' : 'inline-edit'; ?>" class="inline-edit-row inline-edit-row-<?php echo "$hclass inline-edit-" . $screen->post_type;
echo $bulk ? " bulk-edit-row bulk-edit-row-$hclass bulk-edit-{$screen->post_type}" : " quick-edit-row quick-edit-row-$hclass inline-edit-{$screen->post_type}";
?>" style="display: none"><td colspan="<?php echo $this->get_column_count(); ?>" class="colspanchange">
<fieldset class="inline-edit-col-left"><div class="inline-edit-col">
<h4><?php echo $bulk ? __( 'Bulk Edit' ) : __( 'Quick Edit' ); ?></h4>
<?php
if ( post_type_supports( $screen->post_type, 'title' ) ) :
if ( $bulk ) : ?>
<div id="bulk-title-div">
<div id="bulk-titles"></div>
</div>
<?php else : // $bulk ?>
<label>
<span class="title"><?php _e( 'Title' ); ?></span>
<span class="input-text-wrap"><input type="text" name="post_title" class="ptitle" value="" /></span>
</label>
<label>
<span class="title"><?php _e( 'Slug' ); ?></span>
<span class="input-text-wrap"><input type="text" name="post_name" value="" /></span>
</label>
<?php endif; // $bulk
endif; // post_type_supports title ?>
<?php if ( !$bulk ) : ?>
<label><span class="title"><?php _e( 'Date' ); ?></span></label>
<div class="inline-edit-date">
<?php touch_time( 1, 1, 0, 1 ); ?>
</div>
<br class="clear" />
<?php endif; // $bulk
if ( post_type_supports( $screen->post_type, 'author' ) ) :
$authors_dropdown = '';
if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) ) :
$users_opt = array(
'hide_if_only_one_author' => false,
'who' => 'authors',
'name' => 'post_author',
'class'=> 'authors',
'multi' => 1,
'echo' => 0
);
if ( $bulk )
$users_opt['show_option_none'] = __( '&mdash; No Change &mdash;' );
if ( $authors = wp_dropdown_users( $users_opt ) ) :
$authors_dropdown = '<label class="inline-edit-author">';
$authors_dropdown .= '<span class="title">' . __( 'Author' ) . '</span>';
$authors_dropdown .= $authors;
$authors_dropdown .= '</label>';
endif;
endif; // authors
?>
<?php if ( !$bulk ) echo $authors_dropdown;
endif; // post_type_supports author
if ( !$bulk && $can_publish ) :
?>
<div class="inline-edit-group">
<label class="alignleft">
<span class="title"><?php _e( 'Password' ); ?></span>
<span class="input-text-wrap"><input type="text" name="post_password" class="inline-edit-password-input" value="" /></span>
</label>
<em style="margin:5px 10px 0 0" class="alignleft">
<?php
/* translators: Between password field and private checkbox on post quick edit interface */
echo __( '&ndash;OR&ndash;' );
?>
</em>
<label class="alignleft inline-edit-private">
<input type="checkbox" name="keep_private" value="private" />
<span class="checkbox-title"><?php echo __( 'Private' ); ?></span>
</label>
</div>
<?php endif; ?>
</div></fieldset>
<?php if ( count( $hierarchical_taxonomies ) && !$bulk ) : ?>
<fieldset class="inline-edit-col-center inline-edit-categories"><div class="inline-edit-col">
<?php foreach ( $hierarchical_taxonomies as $taxonomy ) : ?>
<span class="title inline-edit-categories-label"><?php echo esc_html( $taxonomy->labels->name ) ?></span>
<input type="hidden" name="<?php echo ( $taxonomy->name == 'category' ) ? 'post_category[]' : 'tax_input[' . esc_attr( $taxonomy->name ) . '][]'; ?>" value="0" />
<ul class="cat-checklist <?php echo esc_attr( $taxonomy->name )?>-checklist">
<?php wp_terms_checklist( null, array( 'taxonomy' => $taxonomy->name ) ) ?>
</ul>
<?php endforeach; //$hierarchical_taxonomies as $taxonomy ?>
</div></fieldset>
<?php endif; // count( $hierarchical_taxonomies ) && !$bulk ?>
<fieldset class="inline-edit-col-right"><div class="inline-edit-col">
<?php
if ( post_type_supports( $screen->post_type, 'author' ) && $bulk )
echo $authors_dropdown;
if ( post_type_supports( $screen->post_type, 'page-attributes' ) ) :
if ( $post_type_object->hierarchical ) :
?> ?>
<label> <tr id="post-<?php echo $post->ID; ?>" class="<?php echo implode( ' ', get_post_class( $classes, $post->ID ) ); ?>">
<span class="title"><?php _e( 'Parent' ); ?></span> <?php $this->single_row_columns( $post ); ?>
</tr>
<?php <?php
$dropdown_args = array( $GLOBALS['post'] = $global_post;
'post_type' => $post_type_object->name, }
'selected' => $post->post_parent,
'name' => 'post_parent',
'show_option_none' => __( 'Main Page (no parent)' ),
'option_none_value' => 0,
'sort_column' => 'menu_order, post_title',
);
if ( $bulk )
$dropdown_args['show_option_no_change'] = __( '&mdash; No Change &mdash;' );
/** /**
* Filter the arguments used to generate the Quick Edit page-parent drop-down. * Gets the name of the default primary column.
*
* @since 2.7.0
* *
* @see wp_dropdown_pages() * @since 4.3.0
* @access protected
* *
* @param array $dropdown_args An array of arguments. * @return string Name of the default primary column, in this case, 'title'.
*/ */
$dropdown_args = apply_filters( 'quick_edit_dropdown_pages_args', $dropdown_args ); protected function get_default_primary_column_name() {
return 'title';
wp_dropdown_pages( $dropdown_args );
?>
</label>
<?php
endif; // hierarchical
if ( !$bulk ) : ?>
<label>
<span class="title"><?php _e( 'Order' ); ?></span>
<span class="input-text-wrap"><input type="text" name="menu_order" class="inline-edit-menu-order-input" value="<?php echo $post->menu_order ?>" /></span>
</label>
<?php endif; // !$bulk
if ( 'page' == $screen->post_type ) :
?>
<label>
<span class="title"><?php _e( 'Template' ); ?></span>
<select name="page_template">
<?php if ( $bulk ) : ?>
<option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<?php endif; // $bulk ?>
<?php
/** This filter is documented in wp-admin/includes/meta-boxes.php */
$default_title = apply_filters( 'default_page_template_title', __( 'Default Template' ), 'quick-edit' );
?>
<option value="default"><?php echo esc_html( $default_title ); ?></option>
<?php page_template_dropdown() ?>
</select>
</label>
<?php
endif; // page post_type
endif; // page-attributes
?>
<?php if ( count( $flat_taxonomies ) && !$bulk ) : ?>
<?php foreach ( $flat_taxonomies as $taxonomy ) : ?>
<?php if ( current_user_can( $taxonomy->cap->assign_terms ) ) : ?>
<label class="inline-edit-tags">
<span class="title"><?php echo esc_html( $taxonomy->labels->name ) ?></span>
<textarea cols="22" rows="1" name="tax_input[<?php echo esc_attr( $taxonomy->name )?>]" class="tax_input_<?php echo esc_attr( $taxonomy->name )?>"></textarea>
</label>
<?php endif; ?>
<?php endforeach; //$flat_taxonomies as $taxonomy ?>
<?php endif; // count( $flat_taxonomies ) && !$bulk ?>
<?php if ( post_type_supports( $screen->post_type, 'comments' ) || post_type_supports( $screen->post_type, 'trackbacks' ) ) :
if ( $bulk ) : ?>
<div class="inline-edit-group">
<?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?>
<label class="alignleft">
<span class="title"><?php _e( 'Comments' ); ?></span>
<select name="comment_status">
<option value=""><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<option value="open"><?php _e( 'Allow' ); ?></option>
<option value="closed"><?php _e( 'Do not allow' ); ?></option>
</select>
</label>
<?php endif; if ( post_type_supports( $screen->post_type, 'trackbacks' ) ) : ?>
<label class="alignright">
<span class="title"><?php _e( 'Pings' ); ?></span>
<select name="ping_status">
<option value=""><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<option value="open"><?php _e( 'Allow' ); ?></option>
<option value="closed"><?php _e( 'Do not allow' ); ?></option>
</select>
</label>
<?php endif; ?>
</div>
<?php else : // $bulk ?>
<div class="inline-edit-group">
<?php if ( post_type_supports( $screen->post_type, 'comments' ) ) : ?>
<label class="alignleft">
<input type="checkbox" name="comment_status" value="open" />
<span class="checkbox-title"><?php _e( 'Allow Comments' ); ?></span>
</label>
<?php endif; if ( post_type_supports( $screen->post_type, 'trackbacks' ) ) : ?>
<label class="alignleft">
<input type="checkbox" name="ping_status" value="open" />
<span class="checkbox-title"><?php _e( 'Allow Pings' ); ?></span>
</label>
<?php endif; ?>
</div>
<?php endif; // $bulk
endif; // post_type_supports comments or pings ?>
<div class="inline-edit-group">
<label class="inline-edit-status alignleft">
<span class="title"><?php _e( 'Status' ); ?></span>
<select name="_status">
<?php if ( $bulk ) : ?>
<option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<?php endif; // $bulk ?>
<?php if ( $can_publish ) : // Contributors only get "Unpublished" and "Pending Review" ?>
<option value="publish"><?php _e( 'Published' ); ?></option>
<option value="future"><?php _e( 'Scheduled' ); ?></option>
<?php if ( $bulk ) : ?>
<option value="private"><?php _e( 'Private' ) ?></option>
<?php endif; // $bulk ?>
<?php endif; ?>
<option value="pending"><?php _e( 'Pending Review' ); ?></option>
<option value="draft"><?php _e( 'Draft' ); ?></option>
</select>
</label>
<?php if ( 'post' == $screen->post_type && $can_publish && current_user_can( $post_type_object->cap->edit_others_posts ) ) : ?>
<?php if ( $bulk ) : ?>
<label class="alignright">
<span class="title"><?php _e( 'Sticky' ); ?></span>
<select name="sticky">
<option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<option value="sticky"><?php _e( 'Sticky' ); ?></option>
<option value="unsticky"><?php _e( 'Not Sticky' ); ?></option>
</select>
</label>
<?php else : // $bulk ?>
<label class="alignleft">
<input type="checkbox" name="sticky" value="sticky" />
<span class="checkbox-title"><?php _e( 'Make this post sticky' ); ?></span>
</label>
<?php endif; // $bulk ?>
<?php endif; // 'post' && $can_publish && current_user_can( 'edit_others_cap' ) ?>
</div>
<?php
if ( $bulk && current_theme_supports( 'post-formats' ) && post_type_supports( $screen->post_type, 'post-formats' ) ) {
$post_formats = get_theme_support( 'post-formats' );
?>
<label class="alignleft" for="post_format">
<span class="title"><?php _ex( 'Format', 'post format' ); ?></span>
<select name="post_format">
<option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
<option value="0"><?php echo get_post_format_string( 'standard' ); ?></option>
<?php
foreach ( $post_formats[0] as $format ) {
?>
<option value="<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></option>
<?php
} }
?>
</select></label>
<?php
}
?>
</div></fieldset>
<?php
list( $columns ) = $this->get_column_info();
foreach ( $columns as $column_name => $column_display_name ) {
if ( isset( $core_columns[$column_name] ) )
continue;
if ( $bulk ) {
/**
* Fires once for each column in Bulk Edit mode.
*
* @since 2.7.0
*
* @param string $column_name Name of the column to edit.
* @param WP_Post $post_type The post type slug.
*/
do_action( 'bulk_edit_custom_box', $column_name, $screen->post_type );
} else {
/**
* Fires once for each column in Quick Edit mode.
*
* @since 2.7.0
*
* @param string $column_name Name of the column to edit.
* @param WP_Post $post_type The post type slug.
*/
do_action( 'quick_edit_custom_box', $column_name, $screen->post_type );
}
}
?>
<p class="submit inline-edit-save">
<a accesskey="c" href="#inline-edit" class="button-secondary cancel alignleft"><?php _e( 'Cancel' ); ?></a>
<?php if ( ! $bulk ) {
wp_nonce_field( 'inlineeditnonce', '_inline_edit', false );
?>
<a accesskey="s" href="#inline-edit" class="button-primary save alignright"><?php _e( 'Update' ); ?></a>
<span class="spinner"></span>
<?php } else {
submit_button( __( 'Update' ), 'button-primary alignright', 'bulk_edit', false, array( 'accesskey' => 's' ) );
} ?>
<input type="hidden" name="post_view" value="<?php echo esc_attr( $m ); ?>" />
<input type="hidden" name="screen" value="<?php echo esc_attr( $screen->id ); ?>" />
<?php if ( ! $bulk && ! post_type_supports( $screen->post_type, 'author' ) ) { ?>
<input type="hidden" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
<?php } ?>
<span class="error" style="display:none"></span>
<br class="clear" />
</p>
</td></tr>
<?php
$bulk++;
}
?>
</tbody></table></form>
<?php
}
} }
function tt_render_list_page($shop){ function tt_render_list_page($shop = ''){
$wc_qd_donation_orders_listing = new WC_Quick_Donation_Listing_Table($shop); $wc_qd_donation_orders_listing = new WC_Quick_Donation_Listing_Table($shop);
$wc_qd_donation_orders_listing->prepare_items(); $wc_qd_donation_orders_listing->prepare_items();
?> ?>
<div class="wrap"> <div class="wrap">
<div id="icon-users" class="icon32"><br/></div> <div id="icon-users" class="icon32"><br/></div>
<h2>Donations</h2> <h2>Donations</h2>
<form id="movies-filter" method="get"> <input type="hidden" name="page" value="<?php echo $_REQUEST['page'] ?>" /> <form id="movies-filter" method="get">
<?php $wc_qd_donation_orders_listing->display() ?> <input type="hidden" name="post_type" value="<?php echo $_REQUEST['post_type'] ?>" />
<input type="hidden" name="page" value="<?php echo $_REQUEST['page'] ?>" />
<?php $wc_qd_donation_orders_listing->search_box(__('Search Donations',WC_QD_TXT), 'post' ); ?>
<?php
$wc_qd_donation_orders_listing->views();
$wc_qd_donation_orders_listing->display() ?>
</form> </form>
</div> </div>
<?php } ?> <?php } ?>
\ No newline at end of file
...@@ -59,7 +59,17 @@ class WooCommerce_Quick_Donation_DB { ...@@ -59,7 +59,17 @@ class WooCommerce_Quick_Donation_DB {
public function get_donation_order_ids(){ public function get_donation_order_ids(){
global $wpdb; global $wpdb;
$db_request = $wpdb->get_results("SELECT donationid FROM ".WC_QD_TB,ARRAY_N); $db_request = $wpdb->get_results("SELECT donationid FROM ".WC_QD_TB,ARRAY_A);
if(!empty($db_request)){
return $db_request;
}
return array();
}
public function get_user_donations_ids($user_id = ''){
global $wpdb;
if($user_id == ''){ $user_id = get_current_user_id();}
$db_request = $wpdb->get_results("SELECT donationid FROM ".WC_QD_TB.' WHERE userid = '.$user_id,ARRAY_A);
if(!empty($db_request)){ if(!empty($db_request)){
return $db_request; return $db_request;
} }
......
...@@ -16,6 +16,8 @@ class WooCommerce_Quick_Donation_Functions { ...@@ -16,6 +16,8 @@ class WooCommerce_Quick_Donation_Functions {
'emails/donation-customer-invoice.php' => 'emails/donation-customer-invoice.php', 'emails/donation-customer-invoice.php' => 'emails/donation-customer-invoice.php',
'emails/plaint/donation-customer-invoice.php' => 'emails/plain/donation-customer-invoice.php', 'emails/plaint/donation-customer-invoice.php' => 'emails/plain/donation-customer-invoice.php',
'myaccount/my-donations.php' => 'myaccount/my-donations.php',
), ),
'is_donation' => array( 'is_donation' => array(
...@@ -52,7 +54,6 @@ class WooCommerce_Quick_Donation_Functions { ...@@ -52,7 +54,6 @@ class WooCommerce_Quick_Donation_Functions {
add_filter( 'the_title', array($this,'wc_page_endpoint_title' ),1); add_filter( 'the_title', array($this,'wc_page_endpoint_title' ),1);
} }
public function wc_page_endpoint_title($title){ public function wc_page_endpoint_title($title){
global $wp_query; global $wp_query;
...@@ -166,7 +167,6 @@ class WooCommerce_Quick_Donation_Functions { ...@@ -166,7 +167,6 @@ class WooCommerce_Quick_Donation_Functions {
} }
public function load_template($file,$path){ public function load_template($file,$path){
$wc_get_template = function_exists('wc_get_template') ? 'wc_get_template' : 'woocommerce_get_template'; $wc_get_template = function_exists('wc_get_template') ? 'wc_get_template' : 'woocommerce_get_template';
$wc_get_template( $file,array(), '', $path); $wc_get_template( $file,array(), '', $path);
} }
...@@ -232,6 +232,7 @@ class WooCommerce_Quick_Donation_Functions { ...@@ -232,6 +232,7 @@ class WooCommerce_Quick_Donation_Functions {
public function get_template($located, $template_name, $args, $template_path, $default_path ){ public function get_template($located, $template_name, $args, $template_path, $default_path ){
$file = $located; $file = $located;
$order_id = 0;
if(isset($args['order_id'])){ $order_id = $args['order_id']; } if(isset($args['order_id'])){ $order_id = $args['order_id']; }
if(isset($args['order']->id)){ $order_id = $args['order']->id; } if(isset($args['order']->id)){ $order_id = $args['order']->id; }
...@@ -248,6 +249,7 @@ class WooCommerce_Quick_Donation_Functions { ...@@ -248,6 +249,7 @@ class WooCommerce_Quick_Donation_Functions {
} }
} }
} }
return $file; return $file;
} }
} }
<?php
/**
* functionality of the plugin.
* @author Varun Sridharan <varunsridharan23@gmail.com>
*/
if ( ! defined( 'WPINC' ) ) { die; }
class WooCommerce_Quick_Donation_MyAccount_Fuctions {
private $order_ids;
public function __construct(){
$order_ids = WC_QD()->db()->get_user_donations_ids();
$this->order_ids = WC_QD()->db()->extract_donation_id($order_ids);
add_filter( 'woocommerce_my_account_my_orders_query',array($this,'change_myaccount_query'));
add_action( 'woocommerce_before_my_account' , array($this,'show_recent_donations'));
}
public function change_myaccount_query($query){
$query['exclude'] = $this->order_ids;
return $query;
}
public function show_recent_donations(){
wc_get_template( 'myaccount/my-donations.php' , array( 'donation_ids' => $this->order_ids ) );
}
}
?>
\ No newline at end of file
...@@ -6,7 +6,7 @@ Requires at least: 3.0 or higher ...@@ -6,7 +6,7 @@ Requires at least: 3.0 or higher
Tested up to: 4.4 Tested up to: 4.4
WC requires at least: 1.0 WC requires at least: 1.0
WC tested up to: 2.4.8 WC tested up to: 2.4.8
Stable tag: 1.3.4 Beta Stable tag: 1.3.5 Beta
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
...@@ -185,6 +185,14 @@ Yes you can! Join in on our <a href="https://github.com/technofreaky/woocomerce- ...@@ -185,6 +185,14 @@ Yes you can! Join in on our <a href="https://github.com/technofreaky/woocomerce-
== Changelog == == Changelog ==
= 1.3.5 BETA =
**Fixes**
* Metabox Error While Creating New Order Via Admin
* Fixed Count Notification Bubble Count
* Minor Bug Fix
= 1.3.4 BETA = = 1.3.4 BETA =
**Fixes** **Fixes**
......
<?php <?php
global $donation_box,$donation_price,$currency; global $donation_box,$donation_price,$currency;
wc_print_notices();
?> ?>
<form method="post"> <form method="post">
<table> <table>
<tr> <tr>
<td> Donation Project </td> <td> Donation Project </td>
<td> <?php echo $donation_box; ?></td> <td> <?php echo $donation_box; ?></td>
...@@ -16,5 +17,6 @@ global $donation_box,$donation_price,$currency; ...@@ -16,5 +17,6 @@ global $donation_box,$donation_price,$currency;
<td></td> <td></td>
<td><input type="submit" name="donation_add" value="Add Donation"/></td> <td><input type="submit" name="donation_add" value="Add Donation"/></td>
</tr> </tr>
</table> </table>
</form> </form>
\ No newline at end of file
<?php
/**
* My Orders
*
* Shows recent orders on the account page
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.3.10
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
$customer_orders = get_posts( array(
'include' => $donation_ids,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => wc_get_order_types( 'view-orders' ),
'post_status' => array_keys( wc_get_order_statuses() )
) );
if ( $customer_orders ) : ?>
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', __( 'Recent Donations', WC_QD_TXT) ); ?></h2>
<table class="shop_table shop_table_responsive my_account_orders">
<thead>
<tr>
<th class="order-number"><span class="nobr"><?php _e( 'ID', WC_QD_TXT ); ?></span></th>
<th class="order-number"><span class="nobr"><?php _e( 'Project', WC_QD_TXT ); ?></span></th>
<th class="order-date"><span class="nobr"><?php _e( 'Date', WC_QD_TXT ); ?></span></th>
<th class="order-status"><span class="nobr"><?php _e( 'Status', WC_QD_TXT ); ?></span></th>
<th class="order-total"><span class="nobr"><?php _e( 'Total', WC_QD_TXT ); ?></span></th>
<th class="order-actions">&nbsp;</th>
</tr>
</thead>
<tbody><?php
foreach ( $customer_orders as $customer_order ) {
$order = wc_get_order( $customer_order );
$order->populate( $customer_order );
$item_count = $order->get_item_count();
?><tr class="order">
<td class="order-number" data-title="<?php esc_attr_e( 'Order Number', 'woocommerce' ); ?>">
<a href="<?php echo esc_url( $order->get_view_order_url() ); ?>">
<?php echo _x( '#', 'hash before order number', 'woocommerce' ) . $order->get_order_number(); ?>
</a>
</td>
<td class="order-number" data-title="<?php esc_attr_e( 'Project', 'woocommerce' ); ?>">
<?php $project_id = WC_QD()->db()->get_project_id($order->id);?>
<a href="<?php echo get_permalink($project_id); ?>">
<?php echo get_the_title($project_id); ?>
</a>
</td>
<td class="order-date" data-title="<?php esc_attr_e( 'Date', 'woocommerce' ); ?>">
<time datetime="<?php echo date( 'Y-m-d', strtotime( $order->order_date ) ); ?>" title="<?php echo esc_attr( strtotime( $order->order_date ) ); ?>"><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></time>
</td>
<td class="order-status" data-title="<?php esc_attr_e( 'Status', 'woocommerce' ); ?>" style="text-align:left; white-space:nowrap;">
<?php echo wc_get_order_status_name( $order->get_status() ); ?>
</td>
<td class="order-total" data-title="<?php esc_attr_e( 'Total', 'woocommerce' ); ?>">
<?php echo sprintf( _n( '%s for %s item', '%s for %s items', $item_count, 'woocommerce' ), $order->get_formatted_order_total(), $item_count ); ?>
</td>
<td class="order-actions">
<?php
$actions = array();
if ( $order->needs_payment() ) {
$actions['pay'] = array(
'url' => $order->get_checkout_payment_url(),
'name' => __( 'Pay', 'woocommerce' )
);
}
if ( in_array( $order->get_status(), apply_filters( 'woocommerce_valid_order_statuses_for_cancel', array( 'pending', 'failed' ), $order ) ) ) {
$actions['cancel'] = array(
'url' => $order->get_cancel_order_url( wc_get_page_permalink( 'myaccount' ) ),
'name' => __( 'Cancel', 'woocommerce' )
);
}
$actions['view'] = array(
'url' => $order->get_view_order_url(),
'name' => __( 'View', 'woocommerce' )
);
$actions = apply_filters( 'woocommerce_my_account_my_orders_actions', $actions, $order );
if ( $actions ) {
foreach ( $actions as $key => $action ) {
echo '<a href="' . esc_url( $action['url'] ) . '" class="button ' . sanitize_html_class( $key ) . '">' . esc_html( $action['name'] ) . '</a>';
}
}
?>
</td>
</tr><?php
}
?></tbody>
</table>
<?php endif; ?>
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Plugin Name: WooCommerce Quick Donation * Plugin Name: WooCommerce Quick Donation
* Plugin URI: https://wordpress.org/plugins/woocommerce-plugin-boiler-plate/ * Plugin URI: https://wordpress.org/plugins/woocommerce-plugin-boiler-plate/
* Description: Turns WooCommerce Into Online Donation * Description: Turns WooCommerce Into Online Donation
* Version: 1.3.4 BETA * Version: 1.3.5 BETA
* Author: Varun Sridharan * Author: Varun Sridharan
* Author URI: http://varunsridharan.in * Author URI: http://varunsridharan.in
* Text Domain: woocommerce-quick-donation * Text Domain: woocommerce-quick-donation
...@@ -18,7 +18,7 @@ class WooCommerce_Quick_Donation { ...@@ -18,7 +18,7 @@ class WooCommerce_Quick_Donation {
/** /**
* @var string * @var string
*/ */
public $version = '1.3.4'; public $version = '1.3.5';
/** /**
* @var WooCommerce The single instance of the class * @var WooCommerce The single instance of the class
...@@ -104,6 +104,7 @@ class WooCommerce_Quick_Donation { ...@@ -104,6 +104,7 @@ class WooCommerce_Quick_Donation {
if($this->is_request('frontend')){ if($this->is_request('frontend')){
$this->load_files(WC_QD_INC.'class-quick-donation-process.php'); $this->load_files(WC_QD_INC.'class-quick-donation-process.php');
$this->load_files(WC_QD_INC.'class-wc-myaccount-functions.php');
$this->load_files(WC_QD_INC.'class-shortcode-handler.php'); $this->load_files(WC_QD_INC.'class-shortcode-handler.php');
} }
...@@ -125,6 +126,7 @@ class WooCommerce_Quick_Donation { ...@@ -125,6 +126,7 @@ class WooCommerce_Quick_Donation {
if($this->is_request('frontend')){ if($this->is_request('frontend')){
self::$shortcode = new WooCommerce_Quick_Donation_Shortcode; self::$shortcode = new WooCommerce_Quick_Donation_Shortcode;
$this->donation = new WooCommerce_Quick_Donation_Process; $this->donation = new WooCommerce_Quick_Donation_Process;
$this->my_account = new WooCommerce_Quick_Donation_MyAccount_Fuctions;
} }
if($this->is_request('admin')){ if($this->is_request('admin')){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment