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

33 lines
473 B
PHP

<?php
namespace AutomateWoo\DataTypes;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Group data type class.
*
* @since 5.6.10
*/
class SenseiGroup extends Post {
/**
* Get singular name for data type.
*
* @return string
*/
public function get_singular_name() {
return __( 'Group', 'automatewoo' );
}
/**
* Get plural name for data type.
*
* @return string
*/
public function get_plural_name() {
return __( 'Groups', 'automatewoo' );
}
}