nanasess /
ec-cube
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | /* |
||
| 3 | * This file is part of EC-CUBE |
||
| 4 | * |
||
| 5 | * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved. |
||
| 6 | * |
||
| 7 | * http://www.lockon.co.jp/ |
||
| 8 | * |
||
| 9 | * This program is free software; you can redistribute it and/or |
||
| 10 | * modify it under the terms of the GNU General Public License |
||
| 11 | * as published by the Free Software Foundation; either version 2 |
||
| 12 | * of the License, or (at your option) any later version. |
||
| 13 | * |
||
| 14 | * This program is distributed in the hope that it will be useful, |
||
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 17 | * GNU General Public License for more details. |
||
| 18 | * |
||
| 19 | * You should have received a copy of the GNU General Public License |
||
| 20 | * along with this program; if not, write to the Free Software |
||
| 21 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||
| 22 | */ |
||
| 23 | |||
| 24 | |||
| 25 | namespace Eccube\Event; |
||
| 26 | |||
| 27 | use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
||
| 28 | use Symfony\Component\Finder\Finder; |
||
| 29 | use Symfony\Component\Form\FormEvent; |
||
| 30 | use Symfony\Component\Form\FormEvents; |
||
| 31 | |||
| 32 | class FormEventSubscriber implements EventSubscriberInterface |
||
| 33 | { |
||
| 34 | public static function getEvents() |
||
| 35 | { |
||
| 36 | $events = array(); |
||
| 37 | // YamlでParseしてがんばる |
||
| 38 | $basePath = __DIR__.'/../../../app/Plugin'; |
||
| 39 | $finder = Finder::create() |
||
| 40 | ->in($basePath) |
||
| 41 | ->directories() |
||
| 42 | ->depth(0); |
||
| 43 | |||
| 44 | $app = \Eccube\Application::getInstance(); |
||
| 45 | |||
| 46 | foreach ($finder as $dir) { |
||
| 47 | $code = $dir->getBaseName(); |
||
| 48 | $path = $dir->getRealPath(); |
||
| 49 | |||
| 50 | try { |
||
| 51 | $app['eccube.service.plugin']->checkPluginArchiveContent($path); |
||
| 52 | } catch (\Eccube\Exception\PluginException $e) { |
||
| 53 | $app['monolog']->warning("skip {$code} form events loading. config.yml not foud or invalid.", array( |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 54 | 'path' => $path, |
||
| 55 | 'original-message' => $e->getMessage() |
||
| 56 | )); |
||
| 57 | continue; |
||
| 58 | } |
||
| 59 | $config = $app['eccube.service.plugin']->readYml($path.'/config.yml'); |
||
| 60 | |||
| 61 | if (isset($config['form'])) { |
||
| 62 | foreach ($config['form'] as $event => $class) { |
||
| 63 | $events[$event][] = '\\Plugin\\'.$config['code'].'\\'.$class; |
||
| 64 | } |
||
| 65 | } |
||
| 66 | } |
||
| 67 | |||
| 68 | return $events; |
||
| 69 | } |
||
| 70 | |||
| 71 | 218 | public static function getSubscribedEvents() |
|
| 72 | { |
||
| 73 | return array( |
||
| 74 | 218 | FormEvents::PRE_SET_DATA => 'onPreSetData', |
|
| 75 | 218 | FormEvents::POST_SET_DATA => 'onPostSetData', |
|
| 76 | 218 | FormEvents::PRE_SUBMIT => 'onPreSubmit', |
|
| 77 | 218 | FormEvents::SUBMIT => 'onSubmit', |
|
| 78 | 218 | FormEvents::POST_SUBMIT => 'onPostSubmit', |
|
| 79 | ); |
||
| 80 | } |
||
| 81 | |||
| 82 | 258 | View Code Duplication | public function onPreSetData(FormEvent $event) |
| 83 | { |
||
| 84 | $events = self::getEvents(); |
||
| 85 | |||
| 86 | 258 | if (isset($events['onPreSetData'])) { |
|
| 87 | foreach ($events['onPreSetData'] as $formEventClass) { |
||
| 88 | $formEvent = new $formEventClass(); |
||
| 89 | $formEvent->onPreSetData($event); |
||
| 90 | } |
||
| 91 | } |
||
| 92 | } |
||
| 93 | |||
| 94 | 258 | View Code Duplication | public function onPostSetData(FormEvent $event) |
| 95 | { |
||
| 96 | $events = self::getEvents(); |
||
| 97 | |||
| 98 | 258 | if (isset($events['onPostSetData'])) { |
|
| 99 | foreach ($events['onPostSetData'] as $formEventClass) { |
||
| 100 | $formEvent = new $formEventClass(); |
||
| 101 | $formEvent->onPostSetData($event); |
||
| 102 | } |
||
| 103 | } |
||
| 104 | } |
||
| 105 | |||
| 106 | 197 | View Code Duplication | public function onPreSubmit(FormEvent $event) |
| 107 | { |
||
| 108 | $events = self::getEvents(); |
||
| 109 | |||
| 110 | 197 | if (isset($events['onPreSubmit'])) { |
|
| 111 | foreach ($events['onPreSubmit'] as $formEventClass) { |
||
| 112 | $formEvent = new $formEventClass(); |
||
| 113 | $formEvent->onPreSubmit($event); |
||
| 114 | } |
||
| 115 | } |
||
| 116 | } |
||
| 117 | |||
| 118 | 242 | View Code Duplication | public function onSubmit(FormEvent $event) |
| 119 | { |
||
| 120 | $events = self::getEvents(); |
||
| 121 | |||
| 122 | 242 | if (isset($events['onSubmit'])) { |
|
| 123 | foreach ($events['onSubmit'] as $formEventClass) { |
||
| 124 | $formEvent = new $formEventClass(); |
||
| 125 | $formEvent->onSubmit($event); |
||
| 126 | } |
||
| 127 | } |
||
| 128 | } |
||
| 129 | |||
| 130 | 197 | View Code Duplication | public function onPostSubmit(FormEvent $event) |
| 131 | { |
||
| 132 | $events = self::getEvents(); |
||
| 133 | |||
| 134 | 197 | if (isset($events['onPostSubmit'])) { |
|
| 135 | foreach ($events['onPostSubmit'] as $formEventClass) { |
||
| 136 | $formEvent = new $formEventClass(); |
||
| 137 | $formEvent->onPostSubmit($event); |
||
| 138 | } |
||
| 139 | } |
||
| 140 | } |
||
| 141 | } |
||
| 142 |