32 lines
610 B
PHP
32 lines
610 B
PHP
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* WC Customer Download Log Data Store Interface.
|
|
*
|
|
* @version 3.3.0
|
|
* @category Interface
|
|
* @author WooThemes
|
|
*/
|
|
interface WC_Customer_Download_Log_Data_Store_Interface {
|
|
|
|
/**
|
|
* Get array of download log ids by specified args.
|
|
*
|
|
* @param array $args
|
|
* @return array of WC_Customer_Download_Log
|
|
*/
|
|
public function get_download_logs( $args = array() );
|
|
|
|
/**
|
|
* Get logs for a specific download permission.
|
|
*
|
|
* @param int $permission_id
|
|
* @return array
|
|
*/
|
|
public function get_download_logs_for_permission( $permission_id );
|
|
|
|
}
|