Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
/
interfaces
✏️
Editing: class-kkart-customer-download-log-data-store-interface.php
<?php /** * Customer Download Log Data Store Interface * * @version 3.3.0 * @package Kkart\Interface */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * KKART Customer Download Log Data Store Interface. * * @version 3.3.0 */ interface KKART_Customer_Download_Log_Data_Store_Interface { /** * Get array of download log ids by specified args. * * @param array $args Arguments. * @return array of KKART_Customer_Download_Log */ public function get_download_logs( $args = array() ); /** * Get logs for a specific download permission. * * @param int $permission_id Permission ID. * @return array */ public function get_download_logs_for_permission( $permission_id ); }
💾 Save Changes
❌ Cancel