1 | <?php |
||
23 | class FeatureTypeAction implements EventSubscriberInterface |
||
24 | { |
||
25 | /** |
||
26 | * @param FeatureTypeEvent $event |
||
27 | * @throws \Exception |
||
28 | * @throws \Propel\Runtime\Exception\PropelException |
||
29 | */ |
||
30 | public function create(FeatureTypeEvent $event) |
||
34 | |||
35 | /** |
||
36 | * @param FeatureTypeEvent $event |
||
37 | * @throws \Exception |
||
38 | * @throws \Propel\Runtime\Exception\PropelException |
||
39 | */ |
||
40 | public function update(FeatureTypeEvent $event) |
||
44 | |||
45 | /** |
||
46 | * @param FeatureTypeEvent $event |
||
47 | * @throws \Exception |
||
48 | * @throws \Propel\Runtime\Exception\PropelException |
||
49 | */ |
||
50 | public function delete(FeatureTypeEvent $event) |
||
54 | |||
55 | /** |
||
56 | * @param FeatureTypeEvent $event |
||
57 | * @throws \Exception |
||
58 | * @throws \Propel\Runtime\Exception\PropelException |
||
59 | */ |
||
60 | public function associate(FeatureTypeEvent $event) |
||
67 | |||
68 | /** |
||
69 | * @param FeatureTypeEvent $event |
||
70 | * @throws \Exception |
||
71 | * @throws \Propel\Runtime\Exception\PropelException |
||
72 | */ |
||
73 | public function dissociate(FeatureTypeEvent $event) |
||
80 | |||
81 | /** |
||
82 | * @param FeatureTypeAvMetaEvent $event |
||
83 | * @throws \Exception |
||
84 | * @throws \Propel\Runtime\Exception\PropelException |
||
85 | */ |
||
86 | public function metaCreate(FeatureTypeAvMetaEvent $event) |
||
90 | |||
91 | /** |
||
92 | * @param FeatureTypeAvMetaEvent $event |
||
93 | * @throws \Exception |
||
94 | * @throws \Propel\Runtime\Exception\PropelException |
||
95 | */ |
||
96 | public function metaUpdate(FeatureTypeAvMetaEvent $event) |
||
100 | |||
101 | /** |
||
102 | * @param FeatureTypeAvMetaEvent $event |
||
103 | * @throws \Exception |
||
104 | * @throws \Propel\Runtime\Exception\PropelException |
||
105 | */ |
||
106 | public function metaDelete(FeatureTypeAvMetaEvent $event) |
||
110 | |||
111 | /** |
||
112 | * Returns an array of event names this subscriber wants to listen to. |
||
113 | * |
||
114 | * The array keys are event names and the value can be: |
||
115 | * |
||
116 | * * The method name to call (priority defaults to 0) |
||
117 | * * An array composed of the method name to call and the priority |
||
118 | * * An array of arrays composed of the method names to call and respective |
||
119 | * priorities, or 0 if unset |
||
120 | * |
||
121 | * For instance: |
||
122 | * |
||
123 | * * array('eventName' => 'methodName') |
||
124 | * * array('eventName' => array('methodName', $priority)) |
||
125 | * * array('eventName' => array(array('methodName1', $priority), array('methodName2')) |
||
126 | * |
||
127 | * @return array The event names to listen to |
||
128 | * |
||
129 | * @api |
||
130 | */ |
||
131 | public static function getSubscribedEvents() |
||
160 | } |
||
161 |