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

20 lines
268 B
PHP

<?php
namespace AutomateWoo\Triggers\Utilities;
/**
* Trait OrderGroup
*
* Sets the trigger in the 'Orders' group.
*
* @since 5.2.0
*/
trait OrderGroup {
/**
* @return string
*/
public function get_group() {
return __( 'Orders', 'automatewoo' );
}
}