Server IP : 104.21.38.3 / Your IP : 172.68.164.28 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/wpforms-lite/templates/admin/payments/ |
Upload File : |
<?php /** * Payments overview reports (summary metrics). * i.e. Total Payments, Total Sales, etc. * * @since 1.8.2 * * @var string $current The active stat card upon page load. * @var array $statcards Payments report stat cards (clickable list-items). */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. // Bail early, if stat cards are empty or not assigned. if ( empty( $statcards ) ) { return; } ?> <div role="menu" class="wpforms-payments-overview-reports" aria-orientation="horizontal" aria-label="<?php esc_attr_e( 'Payments report indicators', 'wpforms-lite' ); ?>" aria-describedby="wpforms-payments-overview-reports-helptext"> <p id="wpforms-payments-overview-reports-helptext" class="screen-reader-text"> <?php esc_html_e( 'List of data points available for filtering. Click a data point for a detailed report.', 'wpforms-lite' ); ?> </p> <ul class="wpforms-payments-overview-reports-legend"> <?php foreach ( $statcards as $chart => $attributes ) : // Skip stat card, if it's not supposed to be displayed. if ( isset( $attributes['condition'] ) && ! $attributes['condition'] ) { continue; } $button_classes = ! empty( $attributes['button_classes'] ) ? (array) $attributes['button_classes'] : []; // To highlight the stats being displayed in the chart at the moment, identify the selected stat card. if ( $chart === $current ) { $button_classes[] = 'is-selected'; } ?> <li class="wpforms-payments-overview-reports-statcard"> <button class="<?php echo wpforms_sanitize_classes( $button_classes, true ); ?>" data-stats="<?php echo esc_attr( $chart ); ?>"> <span class="statcard-label"><?php echo esc_html( $attributes['label'] ); ?></span> <span class="statcard-value"><?php echo ! empty( $attributes['value'] ) ? esc_html( $attributes['value'] ) : '0'; ?></span> <span class="statcard-delta" role="presentation" title="<?php esc_attr_e( 'Comparison to previous period', 'wpforms-lite' ); ?>"><?php echo ! empty( $attributes['delta'] ) ? (int) $attributes['delta'] : ''; ?></span> </button> </li> <?php endforeach; ?> </ul> </div> <?php /* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */