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

33 lines
628 B
PHP

<?php
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @class Variable_Sensei_Teacher_Last_Name
*
* @since 5.6.10
*/
class Variable_Sensei_Teacher_Last_Name extends Variable {
/**
* Set description and other admin props
*/
public function load_admin_details() {
$this->description = __( "Displays the teacher's last name.", '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->last_name;
}
}