📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 02:22:08
📂
/ (Root)
/
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
/
rest-api
/
Controllers
/
Version3
📍 /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/rest-api/Controllers/Version3
🔄 Refresh
✏️
Editing: class-kkart-rest-reports-controller.php
Read Only
<?php /** * REST API Reports controller * * Handles requests to the reports endpoint. * * @package Kkart\RestApi * @since 2.6.0 */ defined( 'ABSPATH' ) || exit; /** * REST API Reports controller class. * * @package Kkart\RestApi * @extends KKART_REST_Reports_V2_Controller */ class KKART_REST_Reports_Controller extends KKART_REST_Reports_V2_Controller { /** * Endpoint namespace. * * @var string */ protected $namespace = 'kkart/v3'; /** * Get reports list. * * @since 3.5.0 * @return array */ protected function get_reports() { $reports = parent::get_reports(); $reports[] = array( 'slug' => 'orders/totals', 'description' => __( 'Orders totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'products/totals', 'description' => __( 'Products totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'customers/totals', 'description' => __( 'Customers totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'coupons/totals', 'description' => __( 'Coupons totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'reviews/totals', 'description' => __( 'Reviews totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'categories/totals', 'description' => __( 'Categories totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'tags/totals', 'description' => __( 'Tags totals.', 'kkart' ), ); $reports[] = array( 'slug' => 'attributes/totals', 'description' => __( 'Attributes totals.', 'kkart' ), ); return $reports; } }
💾 Save Changes
❌ Cancel