@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | $this->register(new MobileDetectServiceProvider()); |
| 174 | 174 | $this->register(new TwigLintServiceProvider()); |
| 175 | 175 | |
| 176 | - $this->error(function (\Exception $e, Request $request, $code) { |
|
| 176 | + $this->error(function(\Exception $e, Request $request, $code) { |
|
| 177 | 177 | if ($this['debug']) { |
| 178 | 178 | return; |
| 179 | 179 | } |
@@ -279,14 +279,14 @@ discard block |
||
| 279 | 279 | return $router; |
| 280 | 280 | }); |
| 281 | 281 | |
| 282 | - $this['eccube.router.origin'] = function ($app) { |
|
| 282 | + $this['eccube.router.origin'] = function($app) { |
|
| 283 | 283 | $resource = __DIR__.'/Controller'; |
| 284 | 284 | $cachePrefix = 'Origin'; |
| 285 | 285 | |
| 286 | 286 | return $app['eccube.router']($resource, $cachePrefix); |
| 287 | 287 | }; |
| 288 | 288 | |
| 289 | - $this['eccube.routers.plugin'] = function ($app) { |
|
| 289 | + $this['eccube.routers.plugin'] = function($app) { |
|
| 290 | 290 | // TODO 有効なプラグインを対象とする必要がある. |
| 291 | 291 | $dirs = Finder::create() |
| 292 | 292 | ->in($app['config']['root_dir'].'/app/Plugin') |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | return $routers; |
| 304 | 304 | }; |
| 305 | 305 | |
| 306 | - $this['eccube.router.extend'] = function ($app) { |
|
| 306 | + $this['eccube.router.extend'] = function($app) { |
|
| 307 | 307 | // TODO ディレクトリ名は暫定 |
| 308 | 308 | $resource = $app['config']['root_dir'].'/app/Acme/Controller'; |
| 309 | 309 | $cachePrefix = 'Extend'; |
@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | return $router; |
| 314 | 314 | }; |
| 315 | 315 | |
| 316 | - $this->extend('request_matcher', function ($matcher, $app) { |
|
| 316 | + $this->extend('request_matcher', function($matcher, $app) { |
|
| 317 | 317 | $matchers = []; |
| 318 | 318 | $matchers[] = $app['eccube.router.extend']; |
| 319 | 319 | foreach ($app['eccube.routers.plugin'] as $router) { |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | return new ChainUrlMatcher($matchers, $app['request_context']); |
| 326 | 326 | }); |
| 327 | 327 | |
| 328 | - $this->extend('url_generator', function ($generator, $app) { |
|
| 328 | + $this->extend('url_generator', function($generator, $app) { |
|
| 329 | 329 | $generators = []; |
| 330 | 330 | $generators[] = $app['eccube.router.extend']; |
| 331 | 331 | foreach ($app['eccube.routers.plugin'] as $router) { |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | }); |
| 339 | 339 | |
| 340 | 340 | // Route CollectionにEC-CUBEで定義したルーティングを追加(debug tool barに出力するため) |
| 341 | - $this->extend('routes', function ($routes, $app) { |
|
| 341 | + $this->extend('routes', function($routes, $app) { |
|
| 342 | 342 | $routes->addCollection($app['eccube.router.extend']->getRouteCollection()); |
| 343 | 343 | foreach ($app['eccube.routers.plugin'] as $router) { |
| 344 | 344 | $routes->addCollection($router->getRouteCollection()); |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | 'translator.cache_dir' => $this['debug'] ? null : $this['config']['root_dir'].'/app/cache/translator', |
| 372 | 372 | 'locale_fallbacks' => ['ja', 'en'], |
| 373 | 373 | )); |
| 374 | - $this->extend('translator', function ($translator, \Silex\Application $app) { |
|
| 374 | + $this->extend('translator', function($translator, \Silex\Application $app) { |
|
| 375 | 375 | $translator->addLoader('php', new \Symfony\Component\Translation\Loader\PhpFileLoader()); |
| 376 | 376 | |
| 377 | 377 | $file = __DIR__.'/Resource/locale/messages.'.$app['locale'].'.php'; |
@@ -414,14 +414,14 @@ discard block |
||
| 414 | 414 | $this->register(new \Silex\Provider\TwigServiceProvider(), array( |
| 415 | 415 | 'twig.form.templates' => array('Form/form_layout.twig'), |
| 416 | 416 | )); |
| 417 | - $this->extend('twig', function (\Twig_Environment $twig, \Silex\Application $app) { |
|
| 417 | + $this->extend('twig', function(\Twig_Environment $twig, \Silex\Application $app) { |
|
| 418 | 418 | $twig->addExtension(new \Eccube\Twig\Extension\EccubeExtension($app)); |
| 419 | 419 | $twig->addExtension(new \Twig_Extension_StringLoader()); |
| 420 | 420 | |
| 421 | 421 | return $twig; |
| 422 | 422 | }); |
| 423 | 423 | |
| 424 | - $this->before(function (Request $request, \Silex\Application $app) { |
|
| 424 | + $this->before(function(Request $request, \Silex\Application $app) { |
|
| 425 | 425 | $app['admin'] = $app['front'] = false; |
| 426 | 426 | $pathinfo = rawurldecode($request->getPathInfo()); |
| 427 | 427 | if (strpos($pathinfo, '/'.trim($app['config']['admin_route'], '/').'/') === 0) { |
@@ -437,7 +437,7 @@ discard block |
||
| 437 | 437 | } |
| 438 | 438 | $paths[] = $app['config']['template_admin_realdir']; |
| 439 | 439 | $paths[] = __DIR__.'/../../app/Plugin'; |
| 440 | - $cacheDir = __DIR__.'/../../app/cache/twig/admin'; |
|
| 440 | + $cacheDir = __DIR__.'/../../app/cache/twig/admin'; |
|
| 441 | 441 | } else { |
| 442 | 442 | // モバイル端末時、smartphoneディレクトリを探索パスに追加する. |
| 443 | 443 | if ($app['mobile_detect.device_type'] == \Eccube\Entity\Master\DeviceType::DEVICE_TYPE_SP) { |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | } |
| 453 | 453 | $paths[] = $app['config']['template_default_realdir']; |
| 454 | 454 | $paths[] = __DIR__.'/../../app/Plugin'; |
| 455 | - $cacheDir = __DIR__.'/../../app/cache/twig/'.$app['config']['template_code']; |
|
| 455 | + $cacheDir = __DIR__.'/../../app/cache/twig/'.$app['config']['template_code']; |
|
| 456 | 456 | } |
| 457 | 457 | $app['twig']->setCache($app['debug'] ? null : $cacheDir); |
| 458 | 458 | $app['twig.loader']->addLoader(new \Twig_Loader_Filesystem($paths)); |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | }, self::EARLY_EVENT); |
| 471 | 471 | |
| 472 | 472 | // twigのグローバル変数を定義. |
| 473 | - $this->on(\Symfony\Component\HttpKernel\KernelEvents::CONTROLLER, function (\Symfony\Component\HttpKernel\Event\FilterControllerEvent $event) { |
|
| 473 | + $this->on(\Symfony\Component\HttpKernel\KernelEvents::CONTROLLER, function(\Symfony\Component\HttpKernel\Event\FilterControllerEvent $event) { |
|
| 474 | 474 | // 未ログイン時にマイページや管理画面以下にアクセスするとSubRequestで実行されるため, |
| 475 | 475 | // $event->isMasterRequest()ではなく、グローバル変数が初期化済かどうかの判定を行う |
| 476 | 476 | if (isset($this['twig_global_initialized']) && $this['twig_global_initialized'] === true) { |
@@ -555,7 +555,7 @@ discard block |
||
| 555 | 555 | // メール送信時の文字エンコード指定(デフォルトはUTF-8) |
| 556 | 556 | if (isset($this['config']['mail']['charset_iso_2022_jp']) && is_bool($this['config']['mail']['charset_iso_2022_jp'])) { |
| 557 | 557 | if ($this['config']['mail']['charset_iso_2022_jp'] === true) { |
| 558 | - \Swift::init(function () { |
|
| 558 | + \Swift::init(function() { |
|
| 559 | 559 | \Swift_DependencyContainer::getInstance() |
| 560 | 560 | ->register('mime.qpheaderencoder') |
| 561 | 561 | ->asAliasOf('mime.base64headerencoder'); |
@@ -590,7 +590,7 @@ discard block |
||
| 590 | 590 | $this->register(new \Saxulum\DoctrineOrmManagerRegistry\Provider\DoctrineOrmManagerRegistryProvider()); |
| 591 | 591 | |
| 592 | 592 | $app = $this; |
| 593 | - $this->extend('db.event_manager', function ($evm) use ($app) { |
|
| 593 | + $this->extend('db.event_manager', function($evm) use ($app) { |
|
| 594 | 594 | $initSubscriber = new InitSubscriber($app); |
| 595 | 595 | $evm->addEventSubscriber($initSubscriber); |
| 596 | 596 | |
@@ -685,7 +685,7 @@ discard block |
||
| 685 | 685 | |
| 686 | 686 | $this->extend( |
| 687 | 687 | 'orm.em.config', |
| 688 | - function (\Doctrine\ORM\Configuration $config, \Silex\Application $app) { |
|
| 688 | + function(\Doctrine\ORM\Configuration $config, \Silex\Application $app) { |
|
| 689 | 689 | |
| 690 | 690 | /** @var $chain \Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain */ |
| 691 | 691 | $chain = $config->getMetadataDriverImpl(); |
@@ -707,7 +707,7 @@ discard block |
||
| 707 | 707 | } |
| 708 | 708 | ); |
| 709 | 709 | |
| 710 | - $this->extend('orm.em', function (\Doctrine\ORM\EntityManager $em, \Silex\Application $app) { |
|
| 710 | + $this->extend('orm.em', function(\Doctrine\ORM\EntityManager $em, \Silex\Application $app) { |
|
| 711 | 711 | // save |
| 712 | 712 | $saveEventSubscriber = new \Eccube\Doctrine\EventSubscriber\SaveEventSubscriber($app); |
| 713 | 713 | $em->getEventManager()->addEventSubscriber($saveEventSubscriber); |
@@ -730,7 +730,7 @@ discard block |
||
| 730 | 730 | // second level cacheの設定. |
| 731 | 731 | $this->extend( |
| 732 | 732 | 'orm.em.config', |
| 733 | - function (\Doctrine\ORM\Configuration $config, \Silex\Application $app) { |
|
| 733 | + function(\Doctrine\ORM\Configuration $config, \Silex\Application $app) { |
|
| 734 | 734 | $config->setSecondLevelCacheEnabled(); |
| 735 | 735 | $cacheConfig = $config->getSecondLevelCacheConfiguration(); |
| 736 | 736 | $regionConfig = $cacheConfig->getRegionsConfiguration(); |
@@ -819,31 +819,31 @@ discard block |
||
| 819 | 819 | array('^/mypage', 'ROLE_USER', $channel), |
| 820 | 820 | ); |
| 821 | 821 | |
| 822 | - $this['eccube.password_encoder'] = function ($app) { |
|
| 822 | + $this['eccube.password_encoder'] = function($app) { |
|
| 823 | 823 | return new \Eccube\Security\Core\Encoder\PasswordEncoder($app['config']); |
| 824 | 824 | }; |
| 825 | - $this['security.encoder_factory'] = function ($app) { |
|
| 825 | + $this['security.encoder_factory'] = function($app) { |
|
| 826 | 826 | return new \Symfony\Component\Security\Core\Encoder\EncoderFactory(array( |
| 827 | 827 | 'Eccube\Entity\Customer' => $app['eccube.password_encoder'], |
| 828 | 828 | 'Eccube\Entity\Member' => $app['eccube.password_encoder'], |
| 829 | 829 | )); |
| 830 | 830 | }; |
| 831 | - $this['eccube.event_listner.security'] = function ($app) { |
|
| 831 | + $this['eccube.event_listner.security'] = function($app) { |
|
| 832 | 832 | return new \Eccube\EventListener\SecurityEventListener($app['orm.em']); |
| 833 | 833 | }; |
| 834 | 834 | |
| 835 | 835 | // Voterの設定 |
| 836 | - $this['authority_voter'] = function ($app) { |
|
| 836 | + $this['authority_voter'] = function($app) { |
|
| 837 | 837 | return new \Eccube\Security\Voter\AuthorityVoter($app); |
| 838 | 838 | }; |
| 839 | 839 | |
| 840 | - $this->extend('security.voters', function ($voters, \Silex\Application $app) { |
|
| 840 | + $this->extend('security.voters', function($voters, \Silex\Application $app) { |
|
| 841 | 841 | $voters[] = $app['authority_voter']; |
| 842 | 842 | |
| 843 | 843 | return $voters; |
| 844 | 844 | }); |
| 845 | 845 | |
| 846 | - $this['security.access_manager'] = function ($app) { |
|
| 846 | + $this['security.access_manager'] = function($app) { |
|
| 847 | 847 | return new \Symfony\Component\Security\Core\Authorization\AccessDecisionManager($app['security.voters'], 'unanimous'); |
| 848 | 848 | }; |
| 849 | 849 | |
@@ -857,7 +857,7 @@ discard block |
||
| 857 | 857 | { |
| 858 | 858 | $config = $this['config']; |
| 859 | 859 | if (isset($config['trusted_proxies_connection_only']) && !empty($config['trusted_proxies_connection_only'])) { |
| 860 | - $this->on(KernelEvents::REQUEST, function (GetResponseEvent $event) use ($config) { |
|
| 860 | + $this->on(KernelEvents::REQUEST, function(GetResponseEvent $event) use ($config) { |
|
| 861 | 861 | // サブリクエストのREMOTE_ADDRも動的に設定を行う必要があるため、KernelEvents::REQUESTを使用する |
| 862 | 862 | Request::setTrustedProxies(array_merge(array($event->getRequest()->server->get('REMOTE_ADDR')), $config['trusted_proxies'])); |
| 863 | 863 | }, self::EARLY_EVENT); |
@@ -874,7 +874,7 @@ discard block |
||
| 874 | 874 | $this->register(new ServiceProvider\EccubePluginServiceProvider()); |
| 875 | 875 | |
| 876 | 876 | // TODO Acme\ServiceProvider の初期化はここで OK? |
| 877 | - if (array_key_exists('service',$this['config'])) { |
|
| 877 | + if (array_key_exists('service', $this['config'])) { |
|
| 878 | 878 | foreach ($this['config']['service'] as $service) { |
| 879 | 879 | $this->register(new $service); |
| 880 | 880 | } |
@@ -1030,7 +1030,7 @@ discard block |
||
| 1030 | 1030 | $app = $this; |
| 1031 | 1031 | |
| 1032 | 1032 | // Response Event(http cache対応、event実行は一番遅く設定) |
| 1033 | - $this->on(\Symfony\Component\HttpKernel\KernelEvents::RESPONSE, function (\Symfony\Component\HttpKernel\Event\FilterResponseEvent $event) use ($app) { |
|
| 1033 | + $this->on(\Symfony\Component\HttpKernel\KernelEvents::RESPONSE, function(\Symfony\Component\HttpKernel\Event\FilterResponseEvent $event) use ($app) { |
|
| 1034 | 1034 | |
| 1035 | 1035 | if (!$event->isMasterRequest()) { |
| 1036 | 1036 | return; |
@@ -53,9 +53,9 @@ discard block |
||
| 53 | 53 | const SESSION_KEY = 'eccube.session.install'; |
| 54 | 54 | public function __construct() |
| 55 | 55 | { |
| 56 | - $this->config_path = __DIR__ . '/../../../../app/config/eccube'; |
|
| 57 | - $this->dist_path = __DIR__ . '/../../Resource/config'; |
|
| 58 | - $this->cache_path = __DIR__ . '/../../../../app/cache'; |
|
| 56 | + $this->config_path = __DIR__.'/../../../../app/config/eccube'; |
|
| 57 | + $this->dist_path = __DIR__.'/../../Resource/config'; |
|
| 58 | + $this->cache_path = __DIR__.'/../../../../app/cache'; |
|
| 59 | 59 | } |
| 60 | 60 | private function isValid(Request $request, Form $form) |
| 61 | 61 | { |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | $this->checkModules($app); |
| 96 | 96 | return $app['twig']->render('step1.twig', array( |
| 97 | 97 | 'form' => $form->createView(), |
| 98 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 98 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 99 | 99 | )); |
| 100 | 100 | } |
| 101 | 101 | // 権限チェック |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | return $app['twig']->render('step2.twig', array( |
| 116 | 116 | 'protectedDirs' => $protectedDirs, |
| 117 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 117 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 118 | 118 | )); |
| 119 | 119 | } |
| 120 | 120 | // サイトの設定 |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | ->getForm(); |
| 126 | 126 | $sessionData = $this->getSessionData($request); |
| 127 | 127 | if (empty($sessionData['shop_name'])) { |
| 128 | - $config_file = $this->config_path . '/config.php'; |
|
| 128 | + $config_file = $this->config_path.'/config.php'; |
|
| 129 | 129 | $fs = new Filesystem(); |
| 130 | 130 | if ($fs->exists($config_file)) { |
| 131 | 131 | // すでに登録されていた場合、登録データを表示 |
@@ -136,10 +136,10 @@ discard block |
||
| 136 | 136 | $sessionData['email'] = $row['email01']; |
| 137 | 137 | } |
| 138 | 138 | // セキュリティの設定 |
| 139 | - $config_file = $this->config_path . '/path.php'; |
|
| 139 | + $config_file = $this->config_path.'/path.php'; |
|
| 140 | 140 | $config = require $config_file; |
| 141 | 141 | $sessionData['admin_dir'] = $config['admin_route']; |
| 142 | - $config_file = $this->config_path . '/config.php'; |
|
| 142 | + $config_file = $this->config_path.'/config.php'; |
|
| 143 | 143 | $config = require $config_file; |
| 144 | 144 | $allowHost = $config['admin_allow_host']; |
| 145 | 145 | if (count($allowHost) > 0) { |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | $sessionData['admin_force_ssl'] = (bool) $config['force_ssl']; |
| 149 | 149 | // ロードバランサー、プロキシサーバ設定 |
| 150 | 150 | if (isset($config['trusted_proxies_connection_only'])) { |
| 151 | - $sessionData['trusted_proxies_connection_only'] = (bool)$config['trusted_proxies_connection_only']; |
|
| 151 | + $sessionData['trusted_proxies_connection_only'] = (bool) $config['trusted_proxies_connection_only']; |
|
| 152 | 152 | } |
| 153 | 153 | if (isset($config['trusted_proxies'])) { |
| 154 | 154 | $trustedProxies = $config['trusted_proxies']; |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | } |
| 158 | 158 | } |
| 159 | 159 | // メール設定 |
| 160 | - $config_file = $this->config_path . '/mail.php'; |
|
| 160 | + $config_file = $this->config_path.'/mail.php'; |
|
| 161 | 161 | $config = require $config_file; |
| 162 | 162 | $mail = $config['mail']; |
| 163 | 163 | $sessionData['mail_backend'] = $mail['transport']; |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | } |
| 178 | 178 | return $app['twig']->render('step3.twig', array( |
| 179 | 179 | 'form' => $form->createView(), |
| 180 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 180 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 181 | 181 | )); |
| 182 | 182 | } |
| 183 | 183 | // データベースの設定 |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | ->getForm(); |
| 189 | 189 | $sessionData = $this->getSessionData($request); |
| 190 | 190 | if (empty($sessionData['database'])) { |
| 191 | - $config_file = $this->config_path . '/database.php'; |
|
| 191 | + $config_file = $this->config_path.'/database.php'; |
|
| 192 | 192 | $fs = new Filesystem(); |
| 193 | 193 | if ($fs->exists($config_file)) { |
| 194 | 194 | // すでに登録されていた場合、登録データを表示 |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | } |
| 212 | 212 | return $app['twig']->render('step4.twig', array( |
| 213 | 213 | 'form' => $form->createView(), |
| 214 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 214 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 215 | 215 | )); |
| 216 | 216 | } |
| 217 | 217 | // データベースの初期化 |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | $host = $request->getSchemeAndHttpHost(); |
| 251 | 251 | $basePath = $request->getBasePath(); |
| 252 | 252 | $params = array( |
| 253 | - 'http_url' => $host . $basePath, |
|
| 253 | + 'http_url' => $host.$basePath, |
|
| 254 | 254 | 'shop_name' => $sessionData['shop_name'], |
| 255 | 255 | ); |
| 256 | 256 | $this->sendAppData($params); |
@@ -261,15 +261,15 @@ discard block |
||
| 261 | 261 | } |
| 262 | 262 | return $app['twig']->render('step5.twig', array( |
| 263 | 263 | 'form' => $form->createView(), |
| 264 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 264 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 265 | 265 | )); |
| 266 | 266 | } |
| 267 | 267 | // インストール完了 |
| 268 | 268 | public function complete(InstallApplication $app, Request $request) |
| 269 | 269 | { |
| 270 | - $config_yml = $this->config_path . '/config.php'; |
|
| 270 | + $config_yml = $this->config_path.'/config.php'; |
|
| 271 | 271 | $config = require $config_yml; |
| 272 | - $config_path = $this->config_path . '/path.php'; |
|
| 272 | + $config_path = $this->config_path.'/path.php'; |
|
| 273 | 273 | $path_yml = require $config_path; |
| 274 | 274 | $config = array_replace_recursive($path_yml, $config); |
| 275 | 275 | if (isset($config['trusted_proxies_connection_only']) && !empty($config['trusted_proxies_connection_only'])) { |
@@ -279,10 +279,10 @@ discard block |
||
| 279 | 279 | } |
| 280 | 280 | $host = $request->getSchemeAndHttpHost(); |
| 281 | 281 | $basePath = $request->getBasePath(); |
| 282 | - $adminUrl = $host . $basePath . '/' . $config['admin_dir']; |
|
| 282 | + $adminUrl = $host.$basePath.'/'.$config['admin_dir']; |
|
| 283 | 283 | return $app['twig']->render('complete.twig', array( |
| 284 | 284 | 'admin_url' => $adminUrl, |
| 285 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 285 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 286 | 286 | )); |
| 287 | 287 | } |
| 288 | 288 | private function resetNatTimer() |
@@ -296,11 +296,11 @@ discard block |
||
| 296 | 296 | { |
| 297 | 297 | foreach ($this->required_modules as $module) { |
| 298 | 298 | if (!extension_loaded($module)) { |
| 299 | - $app->addDanger('[必須] ' . $module . ' 拡張モジュールが有効になっていません。', 'install'); |
|
| 299 | + $app->addDanger('[必須] '.$module.' 拡張モジュールが有効になっていません。', 'install'); |
|
| 300 | 300 | } |
| 301 | 301 | } |
| 302 | 302 | if (!extension_loaded('pdo_mysql') && !extension_loaded('pdo_pgsql')) { |
| 303 | - $app->addDanger('[必須] ' . 'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
| 303 | + $app->addDanger('[必須] '.'pdo_pgsql又はpdo_mysql 拡張モジュールを有効にしてください。', 'install'); |
|
| 304 | 304 | } |
| 305 | 305 | foreach ($this->recommended_module as $module) { |
| 306 | 306 | if (!extension_loaded($module)) { |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | if (!function_exists('apache_get_modules')) { |
| 326 | 326 | $app->addWarning('mod_rewrite が有効になっているか不明です。', 'install'); |
| 327 | 327 | } elseif (!in_array('mod_rewrite', apache_get_modules())) { |
| 328 | - $app->addDanger('[必須] ' . 'mod_rewriteを有効にしてください。', 'install'); |
|
| 328 | + $app->addDanger('[必須] '.'mod_rewriteを有効にしてください。', 'install'); |
|
| 329 | 329 | } |
| 330 | 330 | } elseif (isset($_SERVER['SERVER_SOFTWARE']) && strpos('Microsoft-IIS', $_SERVER['SERVER_SOFTWARE']) !== false) { |
| 331 | 331 | // iis |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | } |
| 336 | 336 | private function setPDO() |
| 337 | 337 | { |
| 338 | - $config_file = $this->config_path . '/database.php'; |
|
| 338 | + $config_file = $this->config_path.'/database.php'; |
|
| 339 | 339 | $config = require $config_file; |
| 340 | 340 | try { |
| 341 | 341 | $this->PDO = \Doctrine\DBAL\DriverManager::getConnection($config['database'], new \Doctrine\DBAL\Configuration()); |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | private function getEntityManager() |
| 363 | 363 | { |
| 364 | 364 | if (!isset($this->app['orm.em'])) { |
| 365 | - $config_file = $this->config_path . '/database.php'; |
|
| 365 | + $config_file = $this->config_path.'/database.php'; |
|
| 366 | 366 | $database = require $config_file; |
| 367 | 367 | $this->app->register(new \Silex\Provider\DoctrineServiceProvider(), array( |
| 368 | 368 | 'db.options' => $database['database'] |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | 'type' => 'annotation', |
| 373 | 373 | 'namespace' => 'Eccube\Entity', |
| 374 | 374 | 'path' => array( |
| 375 | - __DIR__ . '/../../Entity', |
|
| 375 | + __DIR__.'/../../Entity', |
|
| 376 | 376 | ), |
| 377 | 377 | 'use_simple_annotation_reader' => false, |
| 378 | 378 | ), |
@@ -404,7 +404,7 @@ discard block |
||
| 404 | 404 | } |
| 405 | 405 | } |
| 406 | 406 | $this->app->register(new \Dflydev\Provider\DoctrineOrm\DoctrineOrmServiceProvider(), array( |
| 407 | - 'orm.proxies_dir' => __DIR__ . '/../../app/cache/doctrine', |
|
| 407 | + 'orm.proxies_dir' => __DIR__.'/../../app/cache/doctrine', |
|
| 408 | 408 | 'orm.em.options' => array( |
| 409 | 409 | 'mappings' => $ormMappings |
| 410 | 410 | ) |
@@ -433,10 +433,10 @@ discard block |
||
| 433 | 433 | private function insert() |
| 434 | 434 | { |
| 435 | 435 | $this->resetNatTimer(); |
| 436 | - $config_file = $this->config_path . '/database.php'; |
|
| 436 | + $config_file = $this->config_path.'/database.php'; |
|
| 437 | 437 | $database = require $config_file; |
| 438 | 438 | $config['database'] = $database['database']; |
| 439 | - $config_file = $this->config_path . '/config.php'; |
|
| 439 | + $config_file = $this->config_path.'/config.php'; |
|
| 440 | 440 | $baseConfig = require $config_file; |
| 441 | 441 | $config['config'] = $baseConfig; |
| 442 | 442 | $this->PDO->beginTransaction(); |
@@ -485,10 +485,10 @@ discard block |
||
| 485 | 485 | private function update() |
| 486 | 486 | { |
| 487 | 487 | $this->resetNatTimer(); |
| 488 | - $config_file = $this->config_path . '/database.php'; |
|
| 488 | + $config_file = $this->config_path.'/database.php'; |
|
| 489 | 489 | $database = require $config_file; |
| 490 | 490 | $config['database'] = $database['database']; |
| 491 | - $config_file = $this->config_path . '/config.php'; |
|
| 491 | + $config_file = $this->config_path.'/config.php'; |
|
| 492 | 492 | $baseConfig = require $config_file; |
| 493 | 493 | $config['config'] = $baseConfig; |
| 494 | 494 | $this->PDO->beginTransaction(); |
@@ -539,7 +539,7 @@ discard block |
||
| 539 | 539 | $app->boot(); |
| 540 | 540 | $config = new Configuration($app['db']); |
| 541 | 541 | $config->setMigrationsNamespace('DoctrineMigrations'); |
| 542 | - $migrationDir = __DIR__ . '/../../Resource/doctrine/migration'; |
|
| 542 | + $migrationDir = __DIR__.'/../../Resource/doctrine/migration'; |
|
| 543 | 543 | $config->setMigrationsDirectory($migrationDir); |
| 544 | 544 | $config->registerMigrationsFromDirectory($migrationDir); |
| 545 | 545 | $migration = new Migration($config); |
@@ -565,7 +565,7 @@ discard block |
||
| 565 | 565 | private function getProtectedDirs() |
| 566 | 566 | { |
| 567 | 567 | $protectedDirs = array(); |
| 568 | - $base = __DIR__ . '/../../../..'; |
|
| 568 | + $base = __DIR__.'/../../../..'; |
|
| 569 | 569 | $dirs = array( |
| 570 | 570 | '/html', |
| 571 | 571 | '/app', |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | '/app/Plugin', |
| 578 | 578 | ); |
| 579 | 579 | foreach ($dirs as $dir) { |
| 580 | - if (!is_writable($base . $dir)) { |
|
| 580 | + if (!is_writable($base.$dir)) { |
|
| 581 | 581 | $protectedDirs[] = $dir; |
| 582 | 582 | } |
| 583 | 583 | } |
@@ -586,7 +586,7 @@ discard block |
||
| 586 | 586 | private function createConfigYamlFile($data, $auth = true) |
| 587 | 587 | { |
| 588 | 588 | $fs = new Filesystem(); |
| 589 | - $config_file = $this->config_path . '/config.php'; |
|
| 589 | + $config_file = $this->config_path.'/config.php'; |
|
| 590 | 590 | if ($fs->exists($config_file)) { |
| 591 | 591 | $config = require $config_file; |
| 592 | 592 | $fs->remove($config_file); |
@@ -619,7 +619,7 @@ discard block |
||
| 619 | 619 | $adminTrustedProxies = array('127.0.0.1/8', '::1'); |
| 620 | 620 | } |
| 621 | 621 | |
| 622 | - $config = require $this->dist_path . '/config.php'; |
|
| 622 | + $config = require $this->dist_path.'/config.php'; |
|
| 623 | 623 | $config['eccube_install'] = 0; |
| 624 | 624 | $config['auth_magic'] = $auth_magic; |
| 625 | 625 | $config['shop_name'] = $data['shop_name']; |
@@ -643,7 +643,7 @@ discard block |
||
| 643 | 643 | |
| 644 | 644 | private function addInstallStatus() |
| 645 | 645 | { |
| 646 | - $config_file = $this->config_path . '/config.php'; |
|
| 646 | + $config_file = $this->config_path.'/config.php'; |
|
| 647 | 647 | $config = require $config_file; |
| 648 | 648 | $config['eccube_install'] = 1; |
| 649 | 649 | |
@@ -654,7 +654,7 @@ discard block |
||
| 654 | 654 | private function createDatabaseYamlFile($data) |
| 655 | 655 | { |
| 656 | 656 | $fs = new Filesystem(); |
| 657 | - $config_file = $this->config_path . '/database.php'; |
|
| 657 | + $config_file = $this->config_path.'/database.php'; |
|
| 658 | 658 | if ($fs->exists($config_file)) { |
| 659 | 659 | $fs->remove($config_file); |
| 660 | 660 | } |
@@ -675,7 +675,7 @@ discard block |
||
| 675 | 675 | break; |
| 676 | 676 | } |
| 677 | 677 | |
| 678 | - $config = $this->dist_path . '/database.php'; |
|
| 678 | + $config = $this->dist_path.'/database.php'; |
|
| 679 | 679 | $config['database']['driver'] = $data['db_driver']; |
| 680 | 680 | $config['database']['host'] = $data['database_host']; |
| 681 | 681 | $config['database']['dbname'] = $data['database_name']; |
@@ -684,9 +684,9 @@ discard block |
||
| 684 | 684 | $config['database']['password'] = $data['database_password']; |
| 685 | 685 | |
| 686 | 686 | } else { |
| 687 | - $config = $this->dist_path . '/database_sqlite3.php'; |
|
| 687 | + $config = $this->dist_path.'/database_sqlite3.php'; |
|
| 688 | 688 | $config['database']['driver'] = 'pdo_sqlite'; |
| 689 | - $config['database']['path'] = realpath($this->config_path . '/eccube.db'); |
|
| 689 | + $config['database']['path'] = realpath($this->config_path.'/eccube.db'); |
|
| 690 | 690 | } |
| 691 | 691 | |
| 692 | 692 | $this->createPhp($config_file, $config); |
@@ -696,7 +696,7 @@ discard block |
||
| 696 | 696 | private function createMailYamlFile($data) |
| 697 | 697 | { |
| 698 | 698 | $fs = new Filesystem(); |
| 699 | - $config_file = $this->config_path . '/mail.php'; |
|
| 699 | + $config_file = $this->config_path.'/mail.php'; |
|
| 700 | 700 | if ($fs->exists($config_file)) { |
| 701 | 701 | $fs->remove($config_file); |
| 702 | 702 | } |
@@ -715,7 +715,7 @@ discard block |
||
| 715 | 715 | private function createPathYamlFile($data, Request $request) |
| 716 | 716 | { |
| 717 | 717 | $fs = new Filesystem(); |
| 718 | - $config_file = $this->config_path . '/path.php'; |
|
| 718 | + $config_file = $this->config_path.'/path.php'; |
|
| 719 | 719 | if ($fs->exists($config_file)) { |
| 720 | 720 | $fs->remove($config_file); |
| 721 | 721 | } |
@@ -724,11 +724,11 @@ discard block |
||
| 724 | 724 | $USER_DATA_ROUTE = 'user_data'; |
| 725 | 725 | $ROOT_DIR = '%ROOT_DIR%'; |
| 726 | 726 | $ROOT_URLPATH = $request->getBasePath(); |
| 727 | - $ROOT_PUBLIC_URLPATH = $ROOT_URLPATH . RELATIVE_PUBLIC_DIR_PATH; |
|
| 727 | + $ROOT_PUBLIC_URLPATH = $ROOT_URLPATH.RELATIVE_PUBLIC_DIR_PATH; |
|
| 728 | 728 | $target = array('${ADMIN_ROUTE}', '${TEMPLATE_CODE}', '${USER_DATA_ROUTE}', '${ROOT_DIR}', '${ROOT_URLPATH}', '${ROOT_PUBLIC_URLPATH}'); |
| 729 | 729 | $replace = array($ADMIN_ROUTE, $TEMPLATE_CODE, $USER_DATA_ROUTE, $ROOT_DIR, $ROOT_URLPATH, $ROOT_PUBLIC_URLPATH); |
| 730 | 730 | |
| 731 | - $config = require $this->dist_path . '/path.php'; |
|
| 731 | + $config = require $this->dist_path.'/path.php'; |
|
| 732 | 732 | |
| 733 | 733 | $this->createPhp($config_file, $config); |
| 734 | 734 | |
@@ -736,7 +736,7 @@ discard block |
||
| 736 | 736 | } |
| 737 | 737 | private function sendAppData($params) |
| 738 | 738 | { |
| 739 | - $config_file = $this->config_path . '/database.php'; |
|
| 739 | + $config_file = $this->config_path.'/database.php'; |
|
| 740 | 740 | $db_config = require $config_file; |
| 741 | 741 | $this->setPDO(); |
| 742 | 742 | $stmt = $this->PDO->query('select version() as v'); |
@@ -745,7 +745,7 @@ discard block |
||
| 745 | 745 | $version = $row['v']; |
| 746 | 746 | } |
| 747 | 747 | if ($db_config['database']['driver'] === 'pdo_mysql') { |
| 748 | - $db_ver = 'MySQL:' . $version; |
|
| 748 | + $db_ver = 'MySQL:'.$version; |
|
| 749 | 749 | } else { |
| 750 | 750 | $db_ver = $version; |
| 751 | 751 | } |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | ); |
| 762 | 762 | $header = array( |
| 763 | 763 | 'Content-Type: application/x-www-form-urlencoded', |
| 764 | - 'Content-Length: ' . strlen($data), |
|
| 764 | + 'Content-Length: '.strlen($data), |
|
| 765 | 765 | ); |
| 766 | 766 | $context = stream_context_create( |
| 767 | 767 | array( |
@@ -786,7 +786,7 @@ discard block |
||
| 786 | 786 | public function migration(InstallApplication $app, Request $request) |
| 787 | 787 | { |
| 788 | 788 | return $app['twig']->render('migration.twig', array( |
| 789 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 789 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 790 | 790 | )); |
| 791 | 791 | } |
| 792 | 792 | /** |
@@ -812,7 +812,7 @@ discard block |
||
| 812 | 812 | return $app['twig']->render('migration_plugin.twig', array( |
| 813 | 813 | 'Plugins' => $Plugins, |
| 814 | 814 | 'version' => Constant::VERSION, |
| 815 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 815 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 816 | 816 | )); |
| 817 | 817 | } |
| 818 | 818 | } |
@@ -832,7 +832,7 @@ discard block |
||
| 832 | 832 | $config_app->boot(); |
| 833 | 833 | \Eccube\Util\Cache::clear($config_app, true); |
| 834 | 834 | return $app['twig']->render('migration_end.twig', array( |
| 835 | - 'publicPath' => '..' . RELATIVE_PUBLIC_DIR_PATH . '/', |
|
| 835 | + 'publicPath' => '..'.RELATIVE_PUBLIC_DIR_PATH.'/', |
|
| 836 | 836 | )); |
| 837 | 837 | } |
| 838 | 838 | } |
| 839 | 839 | \ No newline at end of file |
@@ -320,7 +320,7 @@ discard block |
||
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | $extension = $image->getClientOriginalExtension(); |
| 323 | - $filename = date('mdHis') . uniqid('_') . '.' . $extension; |
|
| 323 | + $filename = date('mdHis').uniqid('_').'.'.$extension; |
|
| 324 | 324 | $image->move($this->appConfig['image_temp_realdir'], $filename); |
| 325 | 325 | $files[] = $filename; |
| 326 | 326 | } |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | $form = $builder->getForm(); |
| 400 | 400 | |
| 401 | 401 | if (!$has_class) { |
| 402 | - $ProductClass->setStockUnlimited((boolean)$ProductClass->getStockUnlimited()); |
|
| 402 | + $ProductClass->setStockUnlimited((boolean) $ProductClass->getStockUnlimited()); |
|
| 403 | 403 | $form['class']->setData($ProductClass); |
| 404 | 404 | } |
| 405 | 405 | |
@@ -481,8 +481,8 @@ discard block |
||
| 481 | 481 | $Categories = $form->get('Category')->getData(); |
| 482 | 482 | $categoriesIdList = array(); |
| 483 | 483 | foreach ($Categories as $Category) { |
| 484 | - foreach($Category->getPath() as $ParentCategory){ |
|
| 485 | - if (!isset($categoriesIdList[$ParentCategory->getId()])){ |
|
| 484 | + foreach ($Category->getPath() as $ParentCategory) { |
|
| 485 | + if (!isset($categoriesIdList[$ParentCategory->getId()])) { |
|
| 486 | 486 | $ProductCategory = $this->createProductCategory($Product, $ParentCategory, $count); |
| 487 | 487 | $this->entityManager->persist($ProductCategory); |
| 488 | 488 | $count++; |
@@ -491,7 +491,7 @@ discard block |
||
| 491 | 491 | $categoriesIdList[$ParentCategory->getId()] = true; |
| 492 | 492 | } |
| 493 | 493 | } |
| 494 | - if (!isset($categoriesIdList[$Category->getId()])){ |
|
| 494 | + if (!isset($categoriesIdList[$Category->getId()])) { |
|
| 495 | 495 | $ProductCategory = $this->createProductCategory($Product, $Category, $count); |
| 496 | 496 | $this->entityManager->persist($ProductCategory); |
| 497 | 497 | $count++; |
@@ -513,7 +513,7 @@ discard block |
||
| 513 | 513 | $this->entityManager->persist($ProductImage); |
| 514 | 514 | |
| 515 | 515 | // 移動 |
| 516 | - $file = new File($this->appConfig['image_temp_realdir'] . '/' . $add_image); |
|
| 516 | + $file = new File($this->appConfig['image_temp_realdir'].'/'.$add_image); |
|
| 517 | 517 | $file->move($this->appConfig['image_save_realdir']); |
| 518 | 518 | } |
| 519 | 519 | |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | |
| 534 | 534 | // 削除 |
| 535 | 535 | $fs = new Filesystem(); |
| 536 | - $fs->remove($this->appConfig['image_save_realdir'] . '/' . $delete_image); |
|
| 536 | + $fs->remove($this->appConfig['image_save_realdir'].'/'.$delete_image); |
|
| 537 | 537 | } |
| 538 | 538 | $this->entityManager->persist($Product); |
| 539 | 539 | $this->entityManager->flush(); |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | foreach ($deleteImages as $deleteImage) { |
| 669 | 669 | try { |
| 670 | 670 | $fs = new Filesystem(); |
| 671 | - $fs->remove($this->appConfig['image_save_realdir'] . '/' . $deleteImage); |
|
| 671 | + $fs->remove($this->appConfig['image_save_realdir'].'/'.$deleteImage); |
|
| 672 | 672 | } catch (\Exception $e) { |
| 673 | 673 | // エラーが発生しても無視する |
| 674 | 674 | } |
@@ -742,10 +742,10 @@ discard block |
||
| 742 | 742 | |
| 743 | 743 | // 画像ファイルを新規作成 |
| 744 | 744 | $extension = pathinfo($Image->getFileName(), PATHINFO_EXTENSION); |
| 745 | - $filename = date('mdHis') . uniqid('_') . '.' . $extension; |
|
| 745 | + $filename = date('mdHis').uniqid('_').'.'.$extension; |
|
| 746 | 746 | try { |
| 747 | 747 | $fs = new Filesystem(); |
| 748 | - $fs->copy($this->appConfig['image_save_realdir'] . '/' . $Image->getFileName(), $this->appConfig['image_save_realdir'] . '/' . $filename); |
|
| 748 | + $fs->copy($this->appConfig['image_save_realdir'].'/'.$Image->getFileName(), $this->appConfig['image_save_realdir'].'/'.$filename); |
|
| 749 | 749 | } catch (\Exception $e) { |
| 750 | 750 | // エラーが発生しても無視する |
| 751 | 751 | } |
@@ -825,7 +825,7 @@ discard block |
||
| 825 | 825 | $em->getConfiguration()->setSQLLogger(null); |
| 826 | 826 | |
| 827 | 827 | $response = new StreamedResponse(); |
| 828 | - $response->setCallback(function () use ($app, $request) { |
|
| 828 | + $response->setCallback(function() use ($app, $request) { |
|
| 829 | 829 | |
| 830 | 830 | // CSV種別を元に初期化. |
| 831 | 831 | $this->csvExportService->initCsvType(CsvType::CSV_TYPE_PRODUCT); |
@@ -865,7 +865,7 @@ discard block |
||
| 865 | 865 | // データ行の出力. |
| 866 | 866 | $this->csvExportService->setExportQueryBuilder($qb); |
| 867 | 867 | |
| 868 | - $this->csvExportService->exportData(function ($entity, CsvExportService $csvService) use ($app, $request) { |
|
| 868 | + $this->csvExportService->exportData(function($entity, CsvExportService $csvService) use ($app, $request) { |
|
| 869 | 869 | $Csvs = $csvService->getCsvs(); |
| 870 | 870 | |
| 871 | 871 | /** @var $Product \Eccube\Entity\Product */ |
@@ -908,9 +908,9 @@ discard block |
||
| 908 | 908 | }); |
| 909 | 909 | |
| 910 | 910 | $now = new \DateTime(); |
| 911 | - $filename = 'product_' . $now->format('YmdHis') . '.csv'; |
|
| 911 | + $filename = 'product_'.$now->format('YmdHis').'.csv'; |
|
| 912 | 912 | $response->headers->set('Content-Type', 'application/octet-stream'); |
| 913 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
| 913 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
| 914 | 914 | $response->send(); |
| 915 | 915 | |
| 916 | 916 | log_info('商品CSV出力ファイル名', array($filename)); |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | foreach ($data as $row) { |
| 191 | 191 | |
| 192 | 192 | if ($headerSize != count($row)) { |
| 193 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
| 193 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
| 194 | 194 | return $this->render($app, $form, $headers); |
| 195 | 195 | } |
| 196 | 196 | |
@@ -201,33 +201,33 @@ discard block |
||
| 201 | 201 | if (preg_match('/^\d+$/', $row['商品ID'])) { |
| 202 | 202 | $Product = $this->productRepository->find($row['商品ID']); |
| 203 | 203 | if (!$Product) { |
| 204 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
| 204 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
| 205 | 205 | return $this->render($app, $form, $headers); |
| 206 | 206 | } |
| 207 | 207 | } else { |
| 208 | - $this->addErrors(($data->key() + 1) . '行目の商品IDが存在しません。'); |
|
| 208 | + $this->addErrors(($data->key() + 1).'行目の商品IDが存在しません。'); |
|
| 209 | 209 | return $this->render($app, $form, $headers); |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | if ($row['公開ステータス(ID)'] == '') { |
| 215 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が設定されていません。'); |
|
| 215 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が設定されていません。'); |
|
| 216 | 216 | } else { |
| 217 | 217 | if (preg_match('/^\d+$/', $row['公開ステータス(ID)'])) { |
| 218 | 218 | $Disp = $this->dispRepository->find($row['公開ステータス(ID)']); |
| 219 | 219 | if (!$Disp) { |
| 220 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
| 220 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
| 221 | 221 | } else { |
| 222 | 222 | $Product->setStatus($Disp); |
| 223 | 223 | } |
| 224 | 224 | } else { |
| 225 | - $this->addErrors(($data->key() + 1) . '行目の公開ステータス(ID)が存在しません。'); |
|
| 225 | + $this->addErrors(($data->key() + 1).'行目の公開ステータス(ID)が存在しません。'); |
|
| 226 | 226 | } |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | if (Str::isBlank($row['商品名'])) { |
| 230 | - $this->addErrors(($data->key() + 1) . '行目の商品名が設定されていません。'); |
|
| 230 | + $this->addErrors(($data->key() + 1).'行目の商品名が設定されていません。'); |
|
| 231 | 231 | return $this->render($app, $form, $headers); |
| 232 | 232 | } else { |
| 233 | 233 | $Product->setName(Str::trimAll($row['商品名'])); |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 287 | 287 | $ProductClassOrg->setDeliveryFee($deliveryFee); |
| 288 | 288 | } else { |
| 289 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 289 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 290 | 290 | } |
| 291 | 291 | } |
| 292 | 292 | } |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | if ($row['規格分類1(ID)'] != '') { |
| 295 | 295 | |
| 296 | 296 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
| 297 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 297 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 298 | 298 | } else { |
| 299 | 299 | // 商品規格あり |
| 300 | 300 | // 企画分類あり商品を作成 |
@@ -309,30 +309,30 @@ discard block |
||
| 309 | 309 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
| 310 | 310 | $ClassCategory1 = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
| 311 | 311 | if (!$ClassCategory1) { |
| 312 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 312 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 313 | 313 | } else { |
| 314 | 314 | $ProductClass->setClassCategory1($ClassCategory1); |
| 315 | 315 | } |
| 316 | 316 | } else { |
| 317 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 317 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | 320 | if ($row['規格分類2(ID)'] != '') { |
| 321 | 321 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
| 322 | 322 | $ClassCategory2 = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
| 323 | 323 | if (!$ClassCategory2) { |
| 324 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 324 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 325 | 325 | } else { |
| 326 | 326 | if ($ClassCategory1 && |
| 327 | 327 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
| 328 | 328 | ) { |
| 329 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 329 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 330 | 330 | } else { |
| 331 | 331 | $ProductClass->setClassCategory2($ClassCategory2); |
| 332 | 332 | } |
| 333 | 333 | } |
| 334 | 334 | } else { |
| 335 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 335 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | $ProductClass->setProductStock($ProductStock); |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | |
| 345 | 345 | } else { |
| 346 | 346 | if ($row['規格分類2(ID)'] != '') { |
| 347 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 347 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 348 | 348 | } |
| 349 | 349 | } |
| 350 | 350 | |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 373 | 373 | $pc->setDeliveryFee($deliveryFee); |
| 374 | 374 | } else { |
| 375 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 375 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 376 | 376 | } |
| 377 | 377 | } |
| 378 | 378 | } |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | if ($row['規格分類1(ID)'] == $row['規格分類2(ID)']) { |
| 397 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 397 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)には同じ値を使用できません。'); |
|
| 398 | 398 | } else { |
| 399 | 399 | |
| 400 | 400 | // 必ず規格分類1がセットされている |
@@ -403,36 +403,36 @@ discard block |
||
| 403 | 403 | if (preg_match('/^\d+$/', $classCategoryId1)) { |
| 404 | 404 | $ClassCategory1 = $this->classCategoryRepository->find($classCategoryId1); |
| 405 | 405 | if (!$ClassCategory1) { |
| 406 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 406 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 407 | 407 | } |
| 408 | 408 | } else { |
| 409 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 409 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 410 | 410 | } |
| 411 | 411 | |
| 412 | 412 | $ClassCategory2 = null; |
| 413 | 413 | if ($row['規格分類2(ID)'] != '') { |
| 414 | 414 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() == null) { |
| 415 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)は設定できません。'); |
|
| 415 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)は設定できません。'); |
|
| 416 | 416 | } else { |
| 417 | 417 | if (preg_match('/^\d+$/', $classCategoryId2)) { |
| 418 | 418 | $ClassCategory2 = $this->classCategoryRepository->find($classCategoryId2); |
| 419 | 419 | if (!$ClassCategory2) { |
| 420 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 420 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 421 | 421 | } else { |
| 422 | 422 | if ($ClassCategory1 && |
| 423 | 423 | ($ClassCategory1->getClassName()->getId() == $ClassCategory2->getClassName()->getId()) |
| 424 | 424 | ) { |
| 425 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 425 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)と規格分類2(ID)の規格名が同じです。'); |
|
| 426 | 426 | } |
| 427 | 427 | } |
| 428 | 428 | } else { |
| 429 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 429 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 430 | 430 | } |
| 431 | 431 | |
| 432 | 432 | } |
| 433 | 433 | } else { |
| 434 | 434 | if ($pc->getClassCategory1() != null && $pc->getClassCategory2() != null) { |
| 435 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)に値を設定してください。'); |
|
| 435 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)に値を設定してください。'); |
|
| 436 | 436 | } |
| 437 | 437 | } |
| 438 | 438 | $ProductClass = $this->createProductClass($row, $Product, $app, $data, $ClassCategory1, $ClassCategory2); |
@@ -443,7 +443,7 @@ discard block |
||
| 443 | 443 | if (preg_match('/^\d+$/', $deliveryFee) && $deliveryFee >= 0) { |
| 444 | 444 | $ProductClass->setDeliveryFee($deliveryFee); |
| 445 | 445 | } else { |
| 446 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 446 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 447 | 447 | } |
| 448 | 448 | } |
| 449 | 449 | } |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | foreach ($data as $row) { |
| 534 | 534 | |
| 535 | 535 | if ($headerSize != count($row)) { |
| 536 | - $this->addErrors(($data->key() + 1) . '行目のCSVフォーマットが一致しません。'); |
|
| 536 | + $this->addErrors(($data->key() + 1).'行目のCSVフォーマットが一致しません。'); |
|
| 537 | 537 | return $this->render($app, $form, $headers); |
| 538 | 538 | } |
| 539 | 539 | |
@@ -541,23 +541,23 @@ discard block |
||
| 541 | 541 | $Category = new Category(); |
| 542 | 542 | } else { |
| 543 | 543 | if (!preg_match('/^\d+$/', $row['カテゴリID'])) { |
| 544 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
| 544 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
| 545 | 545 | return $this->render($app, $form, $headers); |
| 546 | 546 | } |
| 547 | 547 | $Category = $this->categoryRepository->find($row['カテゴリID']); |
| 548 | 548 | if (!$Category) { |
| 549 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDが存在しません。'); |
|
| 549 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDが存在しません。'); |
|
| 550 | 550 | return $this->render($app, $form, $headers); |
| 551 | 551 | } |
| 552 | 552 | if ($row['カテゴリID'] == $row['親カテゴリID']) { |
| 553 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
| 553 | + $this->addErrors(($data->key() + 1).'行目のカテゴリIDと親カテゴリIDが同じです。'); |
|
| 554 | 554 | return $this->render($app, $form, $headers); |
| 555 | 555 | } |
| 556 | 556 | |
| 557 | 557 | } |
| 558 | 558 | |
| 559 | 559 | if (Str::isBlank($row['カテゴリ名'])) { |
| 560 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリ名が設定されていません。'); |
|
| 560 | + $this->addErrors(($data->key() + 1).'行目のカテゴリ名が設定されていません。'); |
|
| 561 | 561 | return $this->render($app, $form, $headers); |
| 562 | 562 | } else { |
| 563 | 563 | $Category->setName(Str::trimAll($row['カテゴリ名'])); |
@@ -566,13 +566,13 @@ discard block |
||
| 566 | 566 | if ($row['親カテゴリID'] != '') { |
| 567 | 567 | |
| 568 | 568 | if (!preg_match('/^\d+$/', $row['親カテゴリID'])) { |
| 569 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
| 569 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
| 570 | 570 | return $this->render($app, $form, $headers); |
| 571 | 571 | } |
| 572 | 572 | |
| 573 | 573 | $ParentCategory = $this->categoryRepository->find($row['親カテゴリID']); |
| 574 | 574 | if (!$ParentCategory) { |
| 575 | - $this->addErrors(($data->key() + 1) . '行目の親カテゴリIDが存在しません。'); |
|
| 575 | + $this->addErrors(($data->key() + 1).'行目の親カテゴリIDが存在しません。'); |
|
| 576 | 576 | return $this->render($app, $form, $headers); |
| 577 | 577 | } |
| 578 | 578 | |
@@ -588,14 +588,14 @@ discard block |
||
| 588 | 588 | } |
| 589 | 589 | |
| 590 | 590 | if ($this->appConfig['category_nest_level'] < $Category->getLevel()) { |
| 591 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
| 591 | + $this->addErrors(($data->key() + 1).'行目のカテゴリが最大レベルを超えているため設定できません。'); |
|
| 592 | 592 | return $this->render($app, $form, $headers); |
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | $status = $this->categoryRepository->save($Category); |
| 596 | 596 | |
| 597 | 597 | if (!$status) { |
| 598 | - $this->addErrors(($data->key() + 1) . '行目のカテゴリが設定できません。'); |
|
| 598 | + $this->addErrors(($data->key() + 1).'行目のカテゴリが設定できません。'); |
|
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | if ($this->hasErrors()) { |
@@ -642,7 +642,7 @@ discard block |
||
| 642 | 642 | throw new NotFoundHttpException(); |
| 643 | 643 | } |
| 644 | 644 | |
| 645 | - $response->setCallback(function () use ($app, $request, $headers) { |
|
| 645 | + $response->setCallback(function() use ($app, $request, $headers) { |
|
| 646 | 646 | |
| 647 | 647 | // ヘッダ行の出力 |
| 648 | 648 | $row = array(); |
@@ -657,7 +657,7 @@ discard block |
||
| 657 | 657 | }); |
| 658 | 658 | |
| 659 | 659 | $response->headers->set('Content-Type', 'application/octet-stream'); |
| 660 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
| 660 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
| 661 | 661 | $response->send(); |
| 662 | 662 | |
| 663 | 663 | return $response; |
@@ -680,7 +680,7 @@ discard block |
||
| 680 | 680 | if (!empty($this->fileName)) { |
| 681 | 681 | try { |
| 682 | 682 | $fs = new Filesystem(); |
| 683 | - $fs->remove($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
| 683 | + $fs->remove($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
| 684 | 684 | } catch (\Exception $e) { |
| 685 | 685 | // エラーが発生しても無視する |
| 686 | 686 | } |
@@ -703,10 +703,10 @@ discard block |
||
| 703 | 703 | protected function getImportData($app, $formFile) |
| 704 | 704 | { |
| 705 | 705 | // アップロードされたCSVファイルを一時ディレクトリに保存 |
| 706 | - $this->fileName = 'upload_' . Str::random() . '.' . $formFile->getClientOriginalExtension(); |
|
| 706 | + $this->fileName = 'upload_'.Str::random().'.'.$formFile->getClientOriginalExtension(); |
|
| 707 | 707 | $formFile->move($this->appConfig['csv_temp_realdir'], $this->fileName); |
| 708 | 708 | |
| 709 | - $file = file_get_contents($this->appConfig['csv_temp_realdir'] . '/' . $this->fileName); |
|
| 709 | + $file = file_get_contents($this->appConfig['csv_temp_realdir'].'/'.$this->fileName); |
|
| 710 | 710 | |
| 711 | 711 | if ('\\' === DIRECTORY_SEPARATOR && PHP_VERSION_ID >= 70000) { |
| 712 | 712 | // Windows 環境の PHP7 の場合はファイルエンコーディングを CP932 に合わせる |
@@ -802,8 +802,8 @@ discard block |
||
| 802 | 802 | if (!$Category) { |
| 803 | 803 | $this->addErrors(($data->key() + 1).'行目の商品カテゴリ(ID)「'.$category.'」が存在しません。'); |
| 804 | 804 | } else { |
| 805 | - foreach($Category->getPath() as $ParentCategory){ |
|
| 806 | - if (!isset($categoriesIdList[$ParentCategory->getId()])){ |
|
| 805 | + foreach ($Category->getPath() as $ParentCategory) { |
|
| 806 | + if (!isset($categoriesIdList[$ParentCategory->getId()])) { |
|
| 807 | 807 | $ProductCategory = $this->makeProductCategory($Product, $ParentCategory, $rank); |
| 808 | 808 | $this->entityManager->persist($ProductCategory); |
| 809 | 809 | $rank++; |
@@ -811,7 +811,7 @@ discard block |
||
| 811 | 811 | $categoriesIdList[$ParentCategory->getId()] = true; |
| 812 | 812 | } |
| 813 | 813 | } |
| 814 | - if (!isset($categoriesIdList[$Category->getId()])){ |
|
| 814 | + if (!isset($categoriesIdList[$Category->getId()])) { |
|
| 815 | 815 | $ProductCategory = $this->makeProductCategory($Product, $Category, $rank); |
| 816 | 816 | $rank++; |
| 817 | 817 | $this->em->persist($ProductCategory); |
@@ -866,7 +866,7 @@ discard block |
||
| 866 | 866 | } |
| 867 | 867 | } |
| 868 | 868 | if (!$Tag) { |
| 869 | - $this->addErrors(($data->key() + 1) . '行目のタグ(ID)「' . $tag_id . '」が存在しません。'); |
|
| 869 | + $this->addErrors(($data->key() + 1).'行目のタグ(ID)「'.$tag_id.'」が存在しません。'); |
|
| 870 | 870 | } |
| 871 | 871 | } |
| 872 | 872 | } |
@@ -885,17 +885,17 @@ discard block |
||
| 885 | 885 | |
| 886 | 886 | |
| 887 | 887 | if ($row['商品種別(ID)'] == '') { |
| 888 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。'); |
|
| 888 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。'); |
|
| 889 | 889 | } else { |
| 890 | 890 | if (preg_match('/^\d+$/', $row['商品種別(ID)'])) { |
| 891 | 891 | $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']); |
| 892 | 892 | if (!$ProductType) { |
| 893 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
| 893 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
| 894 | 894 | } else { |
| 895 | 895 | $ProductClass->setProductType($ProductType); |
| 896 | 896 | } |
| 897 | 897 | } else { |
| 898 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
| 898 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
| 899 | 899 | } |
| 900 | 900 | } |
| 901 | 901 | |
@@ -906,12 +906,12 @@ discard block |
||
| 906 | 906 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
| 907 | 907 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
| 908 | 908 | if (!$DeliveryDate) { |
| 909 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 909 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 910 | 910 | } else { |
| 911 | 911 | $ProductClass->setDeliveryDate($DeliveryDate); |
| 912 | 912 | } |
| 913 | 913 | } else { |
| 914 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 914 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 915 | 915 | } |
| 916 | 916 | } |
| 917 | 917 | |
@@ -922,19 +922,19 @@ discard block |
||
| 922 | 922 | } |
| 923 | 923 | |
| 924 | 924 | if ($row['在庫数無制限フラグ'] == '') { |
| 925 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 925 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 926 | 926 | } else { |
| 927 | 927 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
| 928 | 928 | $ProductClass->setStockUnlimited(Constant::DISABLED); |
| 929 | 929 | // 在庫数が設定されていなければエラー |
| 930 | 930 | if ($row['在庫数'] == '') { |
| 931 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
| 931 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
| 932 | 932 | } else { |
| 933 | 933 | $stock = str_replace(',', '', $row['在庫数']); |
| 934 | 934 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
| 935 | 935 | $ProductClass->setStock($stock); |
| 936 | 936 | } else { |
| 937 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
| 937 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
| 938 | 938 | } |
| 939 | 939 | } |
| 940 | 940 | |
@@ -942,7 +942,7 @@ discard block |
||
| 942 | 942 | $ProductClass->setStockUnlimited(Constant::ENABLED); |
| 943 | 943 | $ProductClass->setStock(null); |
| 944 | 944 | } else { |
| 945 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 945 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 946 | 946 | } |
| 947 | 947 | } |
| 948 | 948 | |
@@ -951,7 +951,7 @@ discard block |
||
| 951 | 951 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
| 952 | 952 | $ProductClass->setSaleLimit($saleLimit); |
| 953 | 953 | } else { |
| 954 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
| 954 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
| 955 | 955 | } |
| 956 | 956 | } |
| 957 | 957 | |
@@ -960,18 +960,18 @@ discard block |
||
| 960 | 960 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
| 961 | 961 | $ProductClass->setPrice01($price01); |
| 962 | 962 | } else { |
| 963 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
| 963 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
| 964 | 964 | } |
| 965 | 965 | } |
| 966 | 966 | |
| 967 | 967 | if ($row['販売価格'] == '') { |
| 968 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
| 968 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
| 969 | 969 | } else { |
| 970 | 970 | $price02 = str_replace(',', '', $row['販売価格']); |
| 971 | 971 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
| 972 | 972 | $ProductClass->setPrice02($price02); |
| 973 | 973 | } else { |
| 974 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
| 974 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
| 975 | 975 | } |
| 976 | 976 | } |
| 977 | 977 | |
@@ -980,7 +980,7 @@ discard block |
||
| 980 | 980 | if (preg_match('/^\d+$/', $delivery_fee) && $delivery_fee >= 0) { |
| 981 | 981 | $ProductClass->setDeliveryFee($delivery_fee); |
| 982 | 982 | } else { |
| 983 | - $this->addErrors(($data->key() + 1) . '行目の送料は0以上の数値を設定してください。'); |
|
| 983 | + $this->addErrors(($data->key() + 1).'行目の送料は0以上の数値を設定してください。'); |
|
| 984 | 984 | } |
| 985 | 985 | } |
| 986 | 986 | |
@@ -1013,17 +1013,17 @@ discard block |
||
| 1013 | 1013 | $ProductClass->setProduct($Product); |
| 1014 | 1014 | |
| 1015 | 1015 | if ($row['商品種別(ID)'] == '') { |
| 1016 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が設定されていません。'); |
|
| 1016 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が設定されていません。'); |
|
| 1017 | 1017 | } else { |
| 1018 | 1018 | if (preg_match('/^\d+$/', $row['商品種別(ID)'])) { |
| 1019 | 1019 | $ProductType = $this->productTypeRepository->find($row['商品種別(ID)']); |
| 1020 | 1020 | if (!$ProductType) { |
| 1021 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
| 1021 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
| 1022 | 1022 | } else { |
| 1023 | 1023 | $ProductClass->setProductType($ProductType); |
| 1024 | 1024 | } |
| 1025 | 1025 | } else { |
| 1026 | - $this->addErrors(($data->key() + 1) . '行目の商品種別(ID)が存在しません。'); |
|
| 1026 | + $this->addErrors(($data->key() + 1).'行目の商品種別(ID)が存在しません。'); |
|
| 1027 | 1027 | } |
| 1028 | 1028 | } |
| 1029 | 1029 | |
@@ -1032,12 +1032,12 @@ discard block |
||
| 1032 | 1032 | if (preg_match('/^\d+$/', $row['規格分類1(ID)'])) { |
| 1033 | 1033 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類1(ID)']); |
| 1034 | 1034 | if (!$ClassCategory) { |
| 1035 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 1035 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 1036 | 1036 | } else { |
| 1037 | 1037 | $ProductClass->setClassCategory1($ClassCategory); |
| 1038 | 1038 | } |
| 1039 | 1039 | } else { |
| 1040 | - $this->addErrors(($data->key() + 1) . '行目の規格分類1(ID)が存在しません。'); |
|
| 1040 | + $this->addErrors(($data->key() + 1).'行目の規格分類1(ID)が存在しません。'); |
|
| 1041 | 1041 | } |
| 1042 | 1042 | } |
| 1043 | 1043 | |
@@ -1045,12 +1045,12 @@ discard block |
||
| 1045 | 1045 | if (preg_match('/^\d+$/', $row['規格分類2(ID)'])) { |
| 1046 | 1046 | $ClassCategory = $this->classCategoryRepository->find($row['規格分類2(ID)']); |
| 1047 | 1047 | if (!$ClassCategory) { |
| 1048 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 1048 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 1049 | 1049 | } else { |
| 1050 | 1050 | $ProductClass->setClassCategory2($ClassCategory); |
| 1051 | 1051 | } |
| 1052 | 1052 | } else { |
| 1053 | - $this->addErrors(($data->key() + 1) . '行目の規格分類2(ID)が存在しません。'); |
|
| 1053 | + $this->addErrors(($data->key() + 1).'行目の規格分類2(ID)が存在しません。'); |
|
| 1054 | 1054 | } |
| 1055 | 1055 | } |
| 1056 | 1056 | |
@@ -1058,12 +1058,12 @@ discard block |
||
| 1058 | 1058 | if (preg_match('/^\d+$/', $row['発送日目安(ID)'])) { |
| 1059 | 1059 | $DeliveryDate = $this->deliveryDateRepository->find($row['発送日目安(ID)']); |
| 1060 | 1060 | if (!$DeliveryDate) { |
| 1061 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 1061 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 1062 | 1062 | } else { |
| 1063 | 1063 | $ProductClass->setDeliveryDate($DeliveryDate); |
| 1064 | 1064 | } |
| 1065 | 1065 | } else { |
| 1066 | - $this->addErrors(($data->key() + 1) . '行目の発送日目安(ID)が存在しません。'); |
|
| 1066 | + $this->addErrors(($data->key() + 1).'行目の発送日目安(ID)が存在しません。'); |
|
| 1067 | 1067 | } |
| 1068 | 1068 | } |
| 1069 | 1069 | |
@@ -1074,19 +1074,19 @@ discard block |
||
| 1074 | 1074 | } |
| 1075 | 1075 | |
| 1076 | 1076 | if ($row['在庫数無制限フラグ'] == '') { |
| 1077 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 1077 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 1078 | 1078 | } else { |
| 1079 | 1079 | if ($row['在庫数無制限フラグ'] == (string) Constant::DISABLED) { |
| 1080 | 1080 | $ProductClass->setStockUnlimited(Constant::DISABLED); |
| 1081 | 1081 | // 在庫数が設定されていなければエラー |
| 1082 | 1082 | if ($row['在庫数'] == '') { |
| 1083 | - $this->addErrors(($data->key() + 1) . '行目の在庫数が設定されていません。'); |
|
| 1083 | + $this->addErrors(($data->key() + 1).'行目の在庫数が設定されていません。'); |
|
| 1084 | 1084 | } else { |
| 1085 | 1085 | $stock = str_replace(',', '', $row['在庫数']); |
| 1086 | 1086 | if (preg_match('/^\d+$/', $stock) && $stock >= 0) { |
| 1087 | 1087 | $ProductClass->setStock($row['在庫数']); |
| 1088 | 1088 | } else { |
| 1089 | - $this->addErrors(($data->key() + 1) . '行目の在庫数は0以上の数値を設定してください。'); |
|
| 1089 | + $this->addErrors(($data->key() + 1).'行目の在庫数は0以上の数値を設定してください。'); |
|
| 1090 | 1090 | } |
| 1091 | 1091 | } |
| 1092 | 1092 | |
@@ -1094,7 +1094,7 @@ discard block |
||
| 1094 | 1094 | $ProductClass->setStockUnlimited(Constant::ENABLED); |
| 1095 | 1095 | $ProductClass->setStock(null); |
| 1096 | 1096 | } else { |
| 1097 | - $this->addErrors(($data->key() + 1) . '行目の在庫数無制限フラグが設定されていません。'); |
|
| 1097 | + $this->addErrors(($data->key() + 1).'行目の在庫数無制限フラグが設定されていません。'); |
|
| 1098 | 1098 | } |
| 1099 | 1099 | } |
| 1100 | 1100 | |
@@ -1103,7 +1103,7 @@ discard block |
||
| 1103 | 1103 | if (preg_match('/^\d+$/', $saleLimit) && $saleLimit >= 0) { |
| 1104 | 1104 | $ProductClass->setSaleLimit($saleLimit); |
| 1105 | 1105 | } else { |
| 1106 | - $this->addErrors(($data->key() + 1) . '行目の販売制限数は0以上の数値を設定してください。'); |
|
| 1106 | + $this->addErrors(($data->key() + 1).'行目の販売制限数は0以上の数値を設定してください。'); |
|
| 1107 | 1107 | } |
| 1108 | 1108 | } |
| 1109 | 1109 | |
@@ -1112,18 +1112,18 @@ discard block |
||
| 1112 | 1112 | if (preg_match('/^\d+$/', $price01) && $price01 >= 0) { |
| 1113 | 1113 | $ProductClass->setPrice01($price01); |
| 1114 | 1114 | } else { |
| 1115 | - $this->addErrors(($data->key() + 1) . '行目の通常価格は0以上の数値を設定してください。'); |
|
| 1115 | + $this->addErrors(($data->key() + 1).'行目の通常価格は0以上の数値を設定してください。'); |
|
| 1116 | 1116 | } |
| 1117 | 1117 | } |
| 1118 | 1118 | |
| 1119 | 1119 | if ($row['販売価格'] == '') { |
| 1120 | - $this->addErrors(($data->key() + 1) . '行目の販売価格が設定されていません。'); |
|
| 1120 | + $this->addErrors(($data->key() + 1).'行目の販売価格が設定されていません。'); |
|
| 1121 | 1121 | } else { |
| 1122 | 1122 | $price02 = str_replace(',', '', $row['販売価格']); |
| 1123 | 1123 | if (preg_match('/^\d+$/', $price02) && $price02 >= 0) { |
| 1124 | 1124 | $ProductClass->setPrice02($price02); |
| 1125 | 1125 | } else { |
| 1126 | - $this->addErrors(($data->key() + 1) . '行目の販売価格は0以上の数値を設定してください。'); |
|
| 1126 | + $this->addErrors(($data->key() + 1).'行目の販売価格は0以上の数値を設定してください。'); |
|
| 1127 | 1127 | } |
| 1128 | 1128 | } |
| 1129 | 1129 | |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | log_info('受注削除開始', array($Order->getId())); |
| 304 | 304 | |
| 305 | 305 | // 出荷に紐付いている明細がある場合は削除できない. |
| 306 | - $hasShipping = $Order->getItems()->exists(function ($k, $v) { |
|
| 306 | + $hasShipping = $Order->getItems()->exists(function($k, $v) { |
|
| 307 | 307 | return false === is_null($v->getShipping()); |
| 308 | 308 | }); |
| 309 | 309 | if ($hasShipping) { |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | $em->getConfiguration()->setSQLLogger(null); |
| 362 | 362 | |
| 363 | 363 | $response = new StreamedResponse(); |
| 364 | - $response->setCallback(function () use ($app, $request) { |
|
| 364 | + $response->setCallback(function() use ($app, $request) { |
|
| 365 | 365 | |
| 366 | 366 | // CSV種別を元に初期化. |
| 367 | 367 | $this->csvExportService->initCsvType(CsvType::CSV_TYPE_ORDER); |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | |
| 376 | 376 | // データ行の出力. |
| 377 | 377 | $this->csvExportService->setExportQueryBuilder($qb); |
| 378 | - $this->csvExportService->exportData(function ($entity, $csvService) use ($app, $request) { |
|
| 378 | + $this->csvExportService->exportData(function($entity, $csvService) use ($app, $request) { |
|
| 379 | 379 | |
| 380 | 380 | $Csvs = $csvService->getCsvs(); |
| 381 | 381 | |
@@ -416,9 +416,9 @@ discard block |
||
| 416 | 416 | }); |
| 417 | 417 | |
| 418 | 418 | $now = new \DateTime(); |
| 419 | - $filename = 'order_' . $now->format('YmdHis') . '.csv'; |
|
| 419 | + $filename = 'order_'.$now->format('YmdHis').'.csv'; |
|
| 420 | 420 | $response->headers->set('Content-Type', 'application/octet-stream'); |
| 421 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
| 421 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
| 422 | 422 | $response->send(); |
| 423 | 423 | |
| 424 | 424 | log_info('受注CSV出力ファイル名', array($filename)); |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | $em->getConfiguration()->setSQLLogger(null); |
| 446 | 446 | |
| 447 | 447 | $response = new StreamedResponse(); |
| 448 | - $response->setCallback(function () use ($app, $request) { |
|
| 448 | + $response->setCallback(function() use ($app, $request) { |
|
| 449 | 449 | |
| 450 | 450 | // CSV種別を元に初期化. |
| 451 | 451 | $this->csvExportService->initCsvType(CsvType::CSV_TYPE_SHIPPING); |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | |
| 460 | 460 | // データ行の出力. |
| 461 | 461 | $this->csvExportService->setExportQueryBuilder($qb); |
| 462 | - $this->csvExportService->exportData(function ($entity, $csvService) use ($app, $request) { |
|
| 462 | + $this->csvExportService->exportData(function($entity, $csvService) use ($app, $request) { |
|
| 463 | 463 | |
| 464 | 464 | $Csvs = $csvService->getCsvs(); |
| 465 | 465 | |
@@ -509,9 +509,9 @@ discard block |
||
| 509 | 509 | }); |
| 510 | 510 | |
| 511 | 511 | $now = new \DateTime(); |
| 512 | - $filename = 'shipping_' . $now->format('YmdHis') . '.csv'; |
|
| 512 | + $filename = 'shipping_'.$now->format('YmdHis').'.csv'; |
|
| 513 | 513 | $response->headers->set('Content-Type', 'application/octet-stream'); |
| 514 | - $response->headers->set('Content-Disposition', 'attachment; filename=' . $filename); |
|
| 514 | + $response->headers->set('Content-Disposition', 'attachment; filename='.$filename); |
|
| 515 | 515 | $response->send(); |
| 516 | 516 | |
| 517 | 517 | log_info('配送CSV出力ファイル名', array($filename)); |
@@ -242,7 +242,7 @@ |
||
| 242 | 242 | $this->eventDispatcher->dispatch(EccubeEvents::ADMIN_SETTING_SHOP_PAYMENT_DELETE_COMPLETE, $event); |
| 243 | 243 | |
| 244 | 244 | $app->addSuccess('admin.delete.complete', 'admin'); |
| 245 | - } catch(ForeignKeyConstraintViolationException $e) { |
|
| 245 | + } catch (ForeignKeyConstraintViolationException $e) { |
|
| 246 | 246 | $this->entityManager->rollback(); |
| 247 | 247 | $app->addError('admin.payment.delete.error', 'admin'); |
| 248 | 248 | } |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | { |
| 43 | 43 | $qb = $this->createQueryBuilder('e') |
| 44 | 44 | ->innerJoin('e.Plugin', 'p') |
| 45 | - ->Orderby('e.event','ASC') |
|
| 46 | - ->addOrderby('e.priority','DESC'); |
|
| 45 | + ->Orderby('e.event', 'ASC') |
|
| 46 | + ->addOrderby('e.priority', 'DESC'); |
|
| 47 | 47 | ; |
| 48 | 48 | |
| 49 | 49 | return $qb->getQuery()->getResult(); |
@@ -52,65 +52,65 @@ discard block |
||
| 52 | 52 | public function getPriorityRange($type) |
| 53 | 53 | { |
| 54 | 54 | |
| 55 | - if(PluginEventHandler::EVENT_HANDLER_TYPE_FIRST==$type){ |
|
| 56 | - $range_start=PluginEventHandler::EVENT_PRIORITY_FIRST_START; |
|
| 57 | - $range_end=PluginEventHandler::EVENT_PRIORITY_FIRST_END; |
|
| 58 | - }elseif(PluginEventHandler::EVENT_HANDLER_TYPE_LAST==$type){ |
|
| 59 | - $range_start=PluginEventHandler::EVENT_PRIORITY_LAST_START; |
|
| 60 | - $range_end=PluginEventHandler::EVENT_PRIORITY_LAST_END; |
|
| 61 | - }else{ |
|
| 62 | - $range_start=PluginEventHandler::EVENT_PRIORITY_NORMAL_START; |
|
| 63 | - $range_end=PluginEventHandler::EVENT_PRIORITY_NORMAL_END; |
|
| 55 | + if (PluginEventHandler::EVENT_HANDLER_TYPE_FIRST == $type) { |
|
| 56 | + $range_start = PluginEventHandler::EVENT_PRIORITY_FIRST_START; |
|
| 57 | + $range_end = PluginEventHandler::EVENT_PRIORITY_FIRST_END; |
|
| 58 | + }elseif (PluginEventHandler::EVENT_HANDLER_TYPE_LAST == $type) { |
|
| 59 | + $range_start = PluginEventHandler::EVENT_PRIORITY_LAST_START; |
|
| 60 | + $range_end = PluginEventHandler::EVENT_PRIORITY_LAST_END; |
|
| 61 | + } else { |
|
| 62 | + $range_start = PluginEventHandler::EVENT_PRIORITY_NORMAL_START; |
|
| 63 | + $range_end = PluginEventHandler::EVENT_PRIORITY_NORMAL_END; |
|
| 64 | 64 | } |
| 65 | - return array($range_start,$range_end); |
|
| 65 | + return array($range_start, $range_end); |
|
| 66 | 66 | |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - public function calcNewPriority($event , $type) |
|
| 69 | + public function calcNewPriority($event, $type) |
|
| 70 | 70 | { |
| 71 | 71 | |
| 72 | - list($range_start,$range_end) = $this->getPriorityRange($type); |
|
| 72 | + list($range_start, $range_end) = $this->getPriorityRange($type); |
|
| 73 | 73 | |
| 74 | 74 | $qb = $this->createQueryBuilder('e'); |
| 75 | 75 | $qb->andWhere("e.priority >= $range_end ") |
| 76 | 76 | ->andWhere("e.priority <= $range_start ") |
| 77 | 77 | ->andWhere('e.event = :event') |
| 78 | - ->setParameter('event',$event) |
|
| 78 | + ->setParameter('event', $event) |
|
| 79 | 79 | ->setMaxResults(1) |
| 80 | - ->orderBy('e.priority','ASC'); |
|
| 80 | + ->orderBy('e.priority', 'ASC'); |
|
| 81 | 81 | |
| 82 | - $result=$qb->getQuery()->getResult(); |
|
| 83 | - if(count($result)){ |
|
| 84 | - return $result[0]->getPriority() -1; |
|
| 85 | - }else{ |
|
| 82 | + $result = $qb->getQuery()->getResult(); |
|
| 83 | + if (count($result)) { |
|
| 84 | + return $result[0]->getPriority() - 1; |
|
| 85 | + } else { |
|
| 86 | 86 | return $range_start; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - public function upPriority($pluginEventHandler,$up=true) |
|
| 91 | + public function upPriority($pluginEventHandler, $up = true) |
|
| 92 | 92 | { |
| 93 | 93 | |
| 94 | - list($range_start,$range_end) = $this->getPriorityRange($pluginEventHandler->getHandlerType()); |
|
| 94 | + list($range_start, $range_end) = $this->getPriorityRange($pluginEventHandler->getHandlerType()); |
|
| 95 | 95 | |
| 96 | 96 | $qb = $this->createQueryBuilder('e'); |
| 97 | 97 | |
| 98 | 98 | $qb->andWhere("e.priority >= $range_end ") |
| 99 | 99 | ->andWhere("e.priority <= $range_start ") |
| 100 | - ->andWhere('e.priority '.($up ? '>' : '<' ).' :pri') |
|
| 100 | + ->andWhere('e.priority '.($up ? '>' : '<').' :pri') |
|
| 101 | 101 | ->andWhere('e.event = :event') |
| 102 | - ->setParameter('event',$pluginEventHandler->getEvent()) |
|
| 103 | - ->setParameter('pri', $pluginEventHandler->getPriority() ) |
|
| 102 | + ->setParameter('event', $pluginEventHandler->getEvent()) |
|
| 103 | + ->setParameter('pri', $pluginEventHandler->getPriority()) |
|
| 104 | 104 | ->setMaxResults(1) |
| 105 | - ->orderBy('e.priority', ($up ? 'ASC':'DESC' ) ); |
|
| 105 | + ->orderBy('e.priority', ($up ? 'ASC' : 'DESC')); |
|
| 106 | 106 | |
| 107 | - $result=$qb->getQuery()->getResult(); |
|
| 107 | + $result = $qb->getQuery()->getResult(); |
|
| 108 | 108 | |
| 109 | - if(count($result)){ |
|
| 110 | - $em =$this->getEntityManager(); |
|
| 109 | + if (count($result)) { |
|
| 110 | + $em = $this->getEntityManager(); |
|
| 111 | 111 | $em->getConnection()->beginTransaction(); |
| 112 | 112 | // 2個のentityのprioriryを入れ替える |
| 113 | - $tmp=$pluginEventHandler->getPriority(); |
|
| 113 | + $tmp = $pluginEventHandler->getPriority(); |
|
| 114 | 114 | $pluginEventHandler->setPriority($result[0]->getPriority()); |
| 115 | 115 | $result[0]->setPriority($tmp); |
| 116 | 116 | $em->persist($result[0]); |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $em->flush(); |
| 119 | 119 | $em->getConnection()->commit(); |
| 120 | 120 | # 移動する |
| 121 | - }else{ |
|
| 121 | + } else { |
|
| 122 | 122 | # 移動しない |
| 123 | 123 | throw new PluginException("Can't swap"); |
| 124 | 124 | } |
@@ -63,15 +63,15 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | public function register(Container $app) |
| 65 | 65 | { |
| 66 | - $app[BaseInfo::class] = function () use ($app) { |
|
| 66 | + $app[BaseInfo::class] = function() use ($app) { |
|
| 67 | 67 | return $app[BaseInfoRepository::class]->get(); |
| 68 | 68 | }; |
| 69 | 69 | |
| 70 | - $app['eccube.calculate.context'] = function () use ($app) { |
|
| 70 | + $app['eccube.calculate.context'] = function() use ($app) { |
|
| 71 | 71 | return new \Eccube\Service\Calculator\CalculateContext(); |
| 72 | 72 | }; |
| 73 | 73 | |
| 74 | - $app['eccube.calculate.strategies'] = function () use ($app) { |
|
| 74 | + $app['eccube.calculate.strategies'] = function() use ($app) { |
|
| 75 | 75 | $Collection = new \Eccube\Service\Calculator\CalculateStrategyCollection(); |
| 76 | 76 | $Collection->setApplication($app); |
| 77 | 77 | //$Collection->setOrder($Order); |
@@ -84,47 +84,47 @@ discard block |
||
| 84 | 84 | $Collection->add($app['eccube.calculate.strategy.calculate_total']); |
| 85 | 85 | return $Collection; |
| 86 | 86 | }; |
| 87 | - $app['eccube.calculate.strategy.shipping'] = function () use ($app) { |
|
| 87 | + $app['eccube.calculate.strategy.shipping'] = function() use ($app) { |
|
| 88 | 88 | $Strategy = new \Eccube\Service\Calculator\Strategy\ShippingStrategy(); |
| 89 | 89 | $Strategy->setApplication($app); |
| 90 | 90 | return $Strategy; |
| 91 | 91 | }; |
| 92 | - $app['eccube.calculate.strategy.charge'] = function () use ($app) { |
|
| 92 | + $app['eccube.calculate.strategy.charge'] = function() use ($app) { |
|
| 93 | 93 | $Strategy = new \Eccube\Service\Calculator\Strategy\ChargeStrategy(); |
| 94 | 94 | $Strategy->setApplication($app); |
| 95 | 95 | return $Strategy; |
| 96 | 96 | }; |
| 97 | 97 | |
| 98 | - $app['eccube.calculate.strategy.tax'] = function () use ($app) { |
|
| 98 | + $app['eccube.calculate.strategy.tax'] = function() use ($app) { |
|
| 99 | 99 | $Strategy = new \Eccube\Service\Calculator\Strategy\TaxStrategy(); |
| 100 | 100 | $Strategy->setApplication($app); |
| 101 | 101 | return $Strategy; |
| 102 | 102 | }; |
| 103 | 103 | |
| 104 | - $app['eccube.calculate.strategy.calculate_delivery_fee'] = function () use ($app) { |
|
| 104 | + $app['eccube.calculate.strategy.calculate_delivery_fee'] = function() use ($app) { |
|
| 105 | 105 | $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateDeliveryFeeStrategy(); |
| 106 | 106 | $Strategy->setApplication($app); |
| 107 | 107 | return $Strategy; |
| 108 | 108 | }; |
| 109 | - $app['eccube.calculate.strategy.calculate_charge'] = function () use ($app) { |
|
| 109 | + $app['eccube.calculate.strategy.calculate_charge'] = function() use ($app) { |
|
| 110 | 110 | $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateChargeStrategy(); |
| 111 | 111 | $Strategy->setApplication($app); |
| 112 | 112 | return $Strategy; |
| 113 | 113 | }; |
| 114 | - $app['eccube.calculate.strategy.calculate_total'] = function () use ($app) { |
|
| 114 | + $app['eccube.calculate.strategy.calculate_total'] = function() use ($app) { |
|
| 115 | 115 | $Strategy = new \Eccube\Service\Calculator\Strategy\CalculateTotalStrategy(); |
| 116 | 116 | $Strategy->setApplication($app); |
| 117 | 117 | return $Strategy; |
| 118 | 118 | }; |
| 119 | 119 | |
| 120 | - $app['payment.method'] = $app->protect(function ($clazz, $form) use ($app) { |
|
| 120 | + $app['payment.method'] = $app->protect(function($clazz, $form) use ($app) { |
|
| 121 | 121 | $PaymentMethod = new $clazz; |
| 122 | 122 | $PaymentMethod->setApplication($app); |
| 123 | 123 | $PaymentMethod->setFormType($form); |
| 124 | 124 | return $PaymentMethod; |
| 125 | 125 | }); |
| 126 | 126 | |
| 127 | - $app['payment.method.request'] = $app->protect(function ($clazz, $form, $request) use ($app) { |
|
| 127 | + $app['payment.method.request'] = $app->protect(function($clazz, $form, $request) use ($app) { |
|
| 128 | 128 | $PaymentMethod = new $clazz; |
| 129 | 129 | $PaymentMethod->setApplication($app); |
| 130 | 130 | $PaymentMethod->setFormType($form); |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | return $PaymentMethod; |
| 133 | 133 | }); |
| 134 | 134 | |
| 135 | - $app['eccube.service.calculate'] = $app->protect(function ($Order, $Customer) use ($app) { |
|
| 135 | + $app['eccube.service.calculate'] = $app->protect(function($Order, $Customer) use ($app) { |
|
| 136 | 136 | $Service = new \Eccube\Service\CalculateService($Order, $Customer); |
| 137 | 137 | $Context = $app['eccube.calculate.context']; |
| 138 | 138 | $app['eccube.calculate.strategies']->setOrder($Order); |
@@ -143,24 +143,24 @@ discard block |
||
| 143 | 143 | return $Service; |
| 144 | 144 | }); |
| 145 | 145 | |
| 146 | - $app['eccube.service.payment'] = $app->protect(function ($clazz) use ($app) { |
|
| 146 | + $app['eccube.service.payment'] = $app->protect(function($clazz) use ($app) { |
|
| 147 | 147 | $Service = new $clazz($app['request_stack']); |
| 148 | 148 | |
| 149 | 149 | return $Service; |
| 150 | 150 | }); |
| 151 | 151 | |
| 152 | - $app['paginator'] = $app->protect(function () { |
|
| 152 | + $app['paginator'] = $app->protect(function() { |
|
| 153 | 153 | $paginator = new \Knp\Component\Pager\Paginator(); |
| 154 | 154 | $paginator->subscribe(new \Eccube\EventListener\PaginatorListener()); |
| 155 | 155 | |
| 156 | 156 | return $paginator; |
| 157 | 157 | }); |
| 158 | 158 | |
| 159 | - $app['request_scope'] = function () { |
|
| 159 | + $app['request_scope'] = function() { |
|
| 160 | 160 | return new ParameterBag(); |
| 161 | 161 | }; |
| 162 | 162 | // TODO 使用するか検討 |
| 163 | - $app['eccube.twig.node.hello'] = $app->protect(function ($node, $compiler) { |
|
| 163 | + $app['eccube.twig.node.hello'] = $app->protect(function($node, $compiler) { |
|
| 164 | 164 | $compiler |
| 165 | 165 | ->addDebugInfo($node) |
| 166 | 166 | ->write("echo 'Helloooooo ' . ") |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | }); |
| 172 | 172 | // TODO 使用するか検討 |
| 173 | - $app['eccube.twig.node.jiro'] = $app->protect(function ($node, $compiler) { |
|
| 173 | + $app['eccube.twig.node.jiro'] = $app->protect(function($node, $compiler) { |
|
| 174 | 174 | $compiler |
| 175 | 175 | ->addDebugInfo($node) |
| 176 | 176 | ->write("echo 'jirooooooo ' . ") |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | }); |
| 182 | 182 | |
| 183 | 183 | // TODO 使用するか検討 |
| 184 | - $app['eccube.twig.generic_node_names'] = function () use ($app) { |
|
| 184 | + $app['eccube.twig.generic_node_names'] = function() use ($app) { |
|
| 185 | 185 | return [ |
| 186 | 186 | 'hello', |
| 187 | 187 | 'jiro', |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | }; |
| 191 | 191 | |
| 192 | 192 | // TODO 使用するか検討 |
| 193 | - $app['twig_parsers'] = function () use ($app) { |
|
| 193 | + $app['twig_parsers'] = function() use ($app) { |
|
| 194 | 194 | $GenericTokenParsers = []; |
| 195 | 195 | foreach ($app['eccube.twig.generic_node_names'] as $tagName) { |
| 196 | 196 | $GenericTokenParsers[] = new \Eccube\Twig\Extension\GenericTokenParser($app, $tagName); |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | return $GenericTokenParsers; |
| 199 | 199 | }; |
| 200 | 200 | |
| 201 | - $app['eccube.twig.block.templates'] = function () { |
|
| 201 | + $app['eccube.twig.block.templates'] = function() { |
|
| 202 | 202 | $templates = new ArrayCollection(); |
| 203 | 203 | $templates[] = 'render_block.twig'; |
| 204 | 204 | |
@@ -206,17 +206,17 @@ discard block |
||
| 206 | 206 | }; |
| 207 | 207 | |
| 208 | 208 | $app['eccube.entity.event.dispatcher']->addEventListener(new \Acme\Entity\SoldOutEventListener()); |
| 209 | - $app['eccube.queries'] = function () { |
|
| 209 | + $app['eccube.queries'] = function() { |
|
| 210 | 210 | return new \Eccube\Doctrine\Query\Queries(); |
| 211 | 211 | }; |
| 212 | 212 | // TODO QueryCustomizerの追加方法は要検討 |
| 213 | 213 | $app['eccube.queries']->addCustomizer(new \Acme\Entity\AdminProductListCustomizer()); |
| 214 | 214 | |
| 215 | - $app['eccube.purchase.context'] = $app->protect(function (ItemHolderInterface $origin = null) { |
|
| 215 | + $app['eccube.purchase.context'] = $app->protect(function(ItemHolderInterface $origin = null) { |
|
| 216 | 216 | return new PurchaseContext($origin); |
| 217 | 217 | }); |
| 218 | 218 | |
| 219 | - $app['eccube.purchase.flow.cart.item_processors'] = function ($app) { |
|
| 219 | + $app['eccube.purchase.flow.cart.item_processors'] = function($app) { |
|
| 220 | 220 | $processors = new ArrayCollection(); |
| 221 | 221 | $processors->add(new DisplayStatusValidator()); |
| 222 | 222 | $processors->add(new SaleLimitValidator()); |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | return $processors; |
| 226 | 226 | }; |
| 227 | 227 | |
| 228 | - $app['eccube.purchase.flow.cart.holder_processors'] = function ($app) { |
|
| 228 | + $app['eccube.purchase.flow.cart.holder_processors'] = function($app) { |
|
| 229 | 229 | $processors = new ArrayCollection(); |
| 230 | 230 | $processors->add(new PaymentProcessor($app[DeliveryRepository::class])); |
| 231 | 231 | $processors->add(new PaymentTotalLimitValidator($app['config']['max_total_fee'])); |
@@ -236,14 +236,14 @@ discard block |
||
| 236 | 236 | }; |
| 237 | 237 | |
| 238 | 238 | // example |
| 239 | - $app->extend('eccube.purchase.flow.cart.item_processors', function ($processors, $app) { |
|
| 239 | + $app->extend('eccube.purchase.flow.cart.item_processors', function($processors, $app) { |
|
| 240 | 240 | |
| 241 | 241 | $processors->add(new StockValidator()); |
| 242 | 242 | |
| 243 | 243 | return $processors; |
| 244 | 244 | }); |
| 245 | 245 | |
| 246 | - $app['eccube.purchase.flow.cart'] = function ($app) { |
|
| 246 | + $app['eccube.purchase.flow.cart'] = function($app) { |
|
| 247 | 247 | $flow = new PurchaseFlow(); |
| 248 | 248 | $flow->setItemProcessors($app['eccube.purchase.flow.cart.item_processors']); |
| 249 | 249 | $flow->setItemHolderProcessors($app['eccube.purchase.flow.cart.holder_processors']); |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | return $flow; |
| 252 | 252 | }; |
| 253 | 253 | |
| 254 | - $app['eccube.purchase.flow.shopping'] = function () use ($app) { |
|
| 254 | + $app['eccube.purchase.flow.shopping'] = function() use ($app) { |
|
| 255 | 255 | $flow = new PurchaseFlow(); |
| 256 | 256 | $flow->addItemProcessor(new StockValidator()); |
| 257 | 257 | $flow->addItemProcessor(new DisplayStatusValidator()); |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | return $flow; |
| 262 | 262 | }; |
| 263 | 263 | |
| 264 | - $app['eccube.purchase.flow.order'] = function () use ($app) { |
|
| 264 | + $app['eccube.purchase.flow.order'] = function() use ($app) { |
|
| 265 | 265 | $flow = new PurchaseFlow(); |
| 266 | 266 | $flow->addItemProcessor(new StockValidator()); |
| 267 | 267 | $flow->addItemHolderProcessor(new PaymentTotalLimitValidator($app['config']['max_total_fee'])); |