123456789101112131415161718192021222324252627 |
- <?php
- namespace WorkflowBundle\Utils;
- /*
- * Se definen las entidades que poseen Workflow
- * Definir como:
- * const <NOMBRE_CONSTANTE> = '<Namespace\Entidad>';
- */
- class WorkFlowEntityClasses
- {
- use ChoiceTrait;
- const FTTH_ONU = 'FTTHBundle\Entity\ONU';
- const FTTH_OLT = 'FTTHBundle\Entity\OLT';
-
- const BASE_CLIENT = 'ClientBundle\Entity\Client';
- public function getClass()
- {
- return array(self::FTTH_ONU => self::FTTH_ONU, self::FTTH_OLT => self::FTTH_OLT, self::BASE_CLIENT => self::BASE_CLIENT);
- }
- }
|