automatewoo/includes/Variables/Download_File_Name.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

32 lines
570 B
PHP

<?php
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @class Variable_Download_File_Name
*
* @since 5.6.6
*/
class Variable_Download_File_Name extends Variable {
/**
* Set variable description.
*/
public function load_admin_details() {
$this->description = __( 'Displays the downloadable file name.', 'automatewoo' );
}
/**
* Get file name.
*
* @param Download $download
* @param array $parameters
* @return string
*/
public function get_value( $download, $parameters ) {
return $download->get_file_name();
}
}