Lines:
1 to 55 of 55
<?php /** * Admin Reports Page * * @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_page() – Reports Page */ /* function edd_reports_default_views() – Default Report Views */ /* function edd_get_reporting_view() – Default Report Views */ /* function edd_reports_tab_reports() – Renders the Reports page */ add_action( 'edd_reports_tab_reports', 'edd_reports_tab_reports' ); /* function edd_report_views() – Renders the Reports Page Views Drop Downs */ /* function edd_reports_downloads_table() – Renders the Reports Downloads Table */ add_action( 'edd_reports_view_downloads', 'edd_reports_downloads_table' ); /* function edd_reports_download_details() – Renders the detailed report for a specific product */ add_action( 'edd_reports_view_downloads', 'edd_reports_download_details' ); /* function edd_reports_gateways_table() – Renders the Gateways Table */ add_action( 'edd_reports_view_gateways', 'edd_reports_gateways_table' ); /* function edd_reports_earnings() – Renders the Reports Earnings Graphs */ add_action( 'edd_reports_view_earnings', 'edd_reports_earnings' ); /* function edd_reports_categories() – Renders the Reports Earnings By Category Table & Graphs */ add_action( 'edd_reports_view_categories', 'edd_reports_categories' ); /* function edd_reports_taxes() – Renders the Tax Reports */ add_action( 'edd_reports_view_taxes', 'edd_reports_taxes' ); /* function edd_reports_tab_export() – Renders the ‘Export’ tab on the Reports Page */ add_action( 'edd_reports_tab_export', 'edd_reports_tab_export' ); /* function edd_reports_tab_logs() – Renders the Reports page */ add_action( 'edd_reports_tab_logs', 'edd_reports_tab_logs' ); /* function edd_estimated_monthly_stats() – Retrieves estimated monthly earnings and sales */