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

33 lines
595 B
PHP

<?php
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @class Variable_Sensei_Course_ID
*
* @since 5.6.10
*/
class Variable_Sensei_Course_ID extends Variable {
/**
* Set description and other admin props
*/
public function load_admin_details() {
$this->description = __( "Displays the Course's ID.", 'automatewoo' );
}
/**
* Get Variable Value.
*
* @param \WP_Post $course \WP_Post Object
* @param array $parameters Variable parameters
* @return string
*/
public function get_value( $course, $parameters ) {
return $course->ID;
}
}