Files
api/services/nginx/app/modules/goals/classes/goals_criteria_users.php
T
Jeppe Bundgaard 4bfda5aea4 Introduce modular goal criteria system for users, departments, and products
- Add `goals_criteria` base class implementing customizable goal criteria.
- Introduce interfaces and traits for modular handling of users, departments, and products in goal criteria.
- Include enumeration for goal types (`goals_criteria_type`).
- Implement timeframe and target management through traits.
- Provide initial configuration for enabling the goals module.
2026-01-26 16:01:47 +01:00

13 lines
238 B
PHP

<?php
namespace goals\classes;
use goals\interfaces\goals_criteria_users_i;
use goals\traits\goals_criteria_users_t;
use objects\users_o;
class goals_criteria_users implements goals_criteria_users_i
{
use goals_criteria_users_t;
}