HEX
Server: Apache
System: Linux pdx1-shared-a1-11 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mollywopper (10344313)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/mollywopper/mollywoppersnyb.com/wp-content/plugins/download-monitor/includes/deprecated.php

<?php /** * Deprecated code, avoid using anything that's in this file */ /** * dlm_create_log function. * * @access public * * @deprecated 1.6.0 * * @param string $type (default: '') * @param string $status (default: '') * @param string $message (default: '') * @param mixed $download * @param mixed $version * * @return void */ function dlm_create_log( $type = '', $status = '', $message = '', $download, $version ) { // Deprecated notice _deprecated_function( __FUNCTION__, '1.6.0', 'DLM_Logging->create_log()' ); // Logging object $logging = new DLM_Logging(); // Check if logging is enabled if( $logging->is_logging_enabled() ) { // Create log $logging->create_log( $type, $status, $message, $download, $version ); } }