コード例 #1
0
/**
 * Renders the Reports Transactions Graphs
 *
 * @since	1.4
 * @return	void
 */
function mdjm_reports_transactions()
{
    if (!mdjm_employee_can('run_reports')) {
        return;
    }
    ?>
	<div class="tablenav top">
		<div class="alignleft actions"><?php 
    mdjm_report_views();
    ?>
</div>
	</div>
	<?php 
    mdjm_transactions_reports_graph();
}
コード例 #2
0
 /**
  * Outputs the reporting views
  *
  * @access 	public
  * @since	1.4
  * @return	void
  */
 public function extra_tablenav($which = '')
 {
     if ('bottom' === $which) {
         return;
     }
     mdjm_report_views();
     mdjm_reports_graph_controls();
 }