- 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.
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
namespace goals\interfaces;
|
|
|
|
use objects\department_lanes_o;
|
|
use objects\departments_o;
|
|
use objects\users_o;
|
|
|
|
interface goals_criteria_i
|
|
{
|
|
} |