33 lines
617 B
PHP
33 lines
617 B
PHP
<?php
|
|
|
|
namespace AutomateWoo;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* @class Variable_Sensei_Lesson_Title
|
|
*
|
|
* @since 5.6.10
|
|
*/
|
|
class Variable_Sensei_Lesson_Title extends Variable {
|
|
|
|
/**
|
|
* Set description and other admin props
|
|
*/
|
|
public function load_admin_details() {
|
|
$this->description = __( "Displays the Lesson's Title.", 'automatewoo' );
|
|
}
|
|
|
|
/**
|
|
* Get Variable Value.
|
|
*
|
|
* @param \WP_Post $lesson \WP_Post Object
|
|
* @param array $parameters Variable parameters
|
|
* @return string
|
|
*/
|
|
public function get_value( $lesson, $parameters ) {
|
|
return get_the_title( $lesson );
|
|
}
|
|
}
|