Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

delete_periodic_report()

Description

Deletes a periodic report for the current user.

This function removes the specified periodic report from the database for the user
and also clears any associated unsubscribe (opt out) records.

Parameters

ColumnTypeDefaultDescription
$ref int The reference ID of the periodic report to delete.

Return

bool Returns true upon successful deletion.

Location

include/reporting_functions.php lines 626 to 633

Definition

 
function delete_periodic_report($ref)
    {
    global 
$userref;
    
ps_query('DELETE FROM report_periodic_emails WHERE user = ? AND ref = ?', array("i",$userref"i",$ref));
    
ps_query('DELETE FROM report_periodic_emails_unsubscribe WHERE periodic_email_id = ?', array("i"$ref));

    return 
true;
    }

This article was last updated 17th November 2024 15:35 Europe/London time based on the source file dated 7th November 2024 17:40 Europe/London time.