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

32 lines
554 B
PHP

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