woocommerce/includes/admin/views/html-admin-page-reports.php

74 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-03 13:53:50 +00:00
* Admin View: Page - Reports
*/
if ( ! defined( 'ABSPATH' ) ) {
2016-02-23 09:11:02 +00:00
exit;
}
?>
2013-06-22 10:37:59 +00:00
<div class="wrap woocommerce">
<nav class="nav-tab-wrapper woo-nav-tab-wrapper">
2013-06-22 10:37:59 +00:00
<?php
foreach ( $reports as $key => $report_group ) {
2016-04-22 17:08:44 +00:00
echo '<a href="' . admin_url( 'admin.php?page=wc-reports&tab=' . urlencode( $key ) ) . '" class="nav-tab ';
if ( $current_tab == $key ) {
echo 'nav-tab-active';
}
2013-06-22 10:37:59 +00:00
echo '">' . esc_html( $report_group[ 'title' ] ) . '</a>';
}
do_action( 'wc_reports_tabs' );
?>
</nav>
2013-06-22 10:37:59 +00:00
<?php if ( sizeof( $reports[ $current_tab ]['reports'] ) > 1 ) {
?>
<ul class="subsubsub">
<li><?php
$links = array();
foreach ( $reports[ $current_tab ]['reports'] as $key => $report ) {
2013-10-22 16:26:18 +00:00
$link = '<a href="admin.php?page=wc-reports&tab=' . urlencode( $current_tab ) . '&amp;report=' . urlencode( $key ) . '" class="';
2013-06-22 10:37:59 +00:00
2016-04-22 17:08:44 +00:00
if ( $key == $current_report ) {
$link .= 'current';
}
2013-06-22 10:37:59 +00:00
$link .= '">' . $report['title'] . '</a>';
$links[] = $link;
}
2016-04-22 17:08:44 +00:00
echo implode( ' | </li><li>', $links );
2013-06-22 10:37:59 +00:00
?></li>
</ul>
<br class="clear" />
<?php
}
if ( isset( $reports[ $current_tab ][ 'reports' ][ $current_report ] ) ) {
$report = $reports[ $current_tab ][ 'reports' ][ $current_report ];
if ( ! isset( $report['hide_title'] ) || $report['hide_title'] != true ) {
echo '<h1>' . esc_html( $report['title'] ) . '</h1>';
} else {
echo '<h1 class="screen-reader-text">' . esc_html( $report['title'] ) . '</h1>';
}
2013-06-22 10:37:59 +00:00
2016-04-22 17:08:44 +00:00
if ( $report['description'] ) {
2013-06-22 10:37:59 +00:00
echo '<p>' . $report['description'] . '</p>';
2016-04-22 17:08:44 +00:00
}
2013-06-22 10:37:59 +00:00
2016-04-22 17:08:44 +00:00
if ( $report['callback'] && ( is_callable( $report['callback'] ) ) ) {
call_user_func( $report['callback'], $current_report );
2016-04-22 17:08:44 +00:00
}
2013-06-22 10:37:59 +00:00
}
?>
2015-11-03 13:31:20 +00:00
</div>