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