/**
  * Outputs the reporting views
  *
  * @access public
  * @since  1.0
  * @return void
  */
 public function bulk_actions($which = '')
 {
     // These aren't really bulk actions but this outputs the markup in the right place
     give_report_views();
 }
Example #2
0
/**
 * Renders the Reports Earnings Graphs
 *
 * @since 1.0
 * @return void
 */
function give_reports_earnings()
{
    ?>
	<div class="tablenav top reports-table-nav">
		<h3 class="alignleft reports-earnings-title"><span><?php 
    _e('Income Over Time', 'give');
    ?>
</span></h3>

		<div class="alignright actions reports-views-wrap"><?php 
    give_report_views();
    ?>
</div>
	</div>
	<?php 
    give_reports_graph();
}