Lines:
1 to 33 of 33
<?php /** * Graphing Functions * * @package EDD * @subpackage Admin/Reports * @copyright Copyright (c) 2015, Pippin Williamson * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /* function edd_reports_graph() – Show report graphs */ /* function edd_reports_graph_of_download() – Show report graphs of a specific product */ /* function edd_reports_graph_controls() – Show report graph date filters */ /* function edd_get_report_dates() – Sets up the dates used to filter graph data */ /* function edd_parse_report_dates() – Grabs all of the selected date info and then redirects appropriately */ add_action( 'edd_filter_reports', 'edd_parse_report_dates' ); /* function edd_reports_refresh_button() – EDD Reports Refresh Button */ add_action( 'edd_reports_graph_after', 'edd_reports_refresh_button' ); /* function edd_run_refresh_reports_transients() – EDD trigger the refresh of reports transients */ add_action( 'edd_refresh_reports_transients', 'edd_run_refresh_reports_transients' );