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

33 lines
611 B
PHP

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