@@ -292,6 +292,10 @@ discard block |
||
292 | 292 | ob_flush(); |
293 | 293 | flush(); |
294 | 294 | } |
295 | + |
|
296 | + /** |
|
297 | + * @param InstallApplication $app |
|
298 | + */ |
|
295 | 299 | private function checkModules($app) |
296 | 300 | { |
297 | 301 | foreach ($this->required_modules as $module) { |
@@ -633,6 +637,9 @@ discard block |
||
633 | 637 | return $this; |
634 | 638 | } |
635 | 639 | |
640 | + /** |
|
641 | + * @param string $path |
|
642 | + */ |
|
636 | 643 | private function createPhp($path, $config) |
637 | 644 | { |
638 | 645 | $content = var_export($config, true); |
@@ -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 |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php return [ |
2 | - 'database' => |
|
3 | - [ |
|
2 | + 'database' => |
|
3 | + [ |
|
4 | 4 | 'driver' => '${DBDRIVER}', |
5 | 5 | 'memory' => true, |
6 | - ], |
|
6 | + ], |
|
7 | 7 | ]; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php return [ |
2 | - 'log' => |
|
3 | - [ |
|
2 | + 'log' => |
|
3 | + [ |
|
4 | 4 | 'suffix' => NULL, |
5 | 5 | 'filename' => 'site', |
6 | 6 | 'delimiter' => '_', |
@@ -13,8 +13,8 @@ discard block |
||
13 | 13 | 'log_format' => '[%datetime%] %channel%.%level_name% [%session_id%] [%uid%] [%user_id%] [%class%:%function%:%line%] - %message% %context% %extra% [%method%, %url%, %ip%, %referrer%, %user_agent%]', |
14 | 14 | 'channel' => |
15 | 15 | [ |
16 | - 'monolog' => |
|
17 | - [ |
|
16 | + 'monolog' => |
|
17 | + [ |
|
18 | 18 | 'name' => 'eccube', |
19 | 19 | 'filename' => 'site', |
20 | 20 | 'delimiter' => '_', |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | 'max_files' => 90, |
26 | 26 | 'log_dateformat' => 'Y-m-d H:i:s,u', |
27 | 27 | 'log_format' => '[%datetime%] %channel%.%level_name% [%session_id%] [%uid%] [%user_id%] [%class%:%function%:%line%] - %message% %context% %extra% [%method%, %url%, %ip%, %referrer%, %user_agent%]', |
28 | - ], |
|
29 | - 'front' => |
|
30 | - [ |
|
28 | + ], |
|
29 | + 'front' => |
|
30 | + [ |
|
31 | 31 | 'name' => 'front', |
32 | 32 | 'filename' => 'front_site', |
33 | 33 | 'delimiter' => '_', |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | 'max_files' => 90, |
39 | 39 | 'log_dateformat' => 'Y-m-d H:i:s,u', |
40 | 40 | 'log_format' => '[%datetime%] %channel%.%level_name% [%session_id%] [%uid%] [%user_id%] [%class%:%function%:%line%] - %message% %context% %extra% [%method%, %url%, %ip%, %referrer%, %user_agent%]', |
41 | - ], |
|
42 | - 'admin' => |
|
43 | - [ |
|
41 | + ], |
|
42 | + 'admin' => |
|
43 | + [ |
|
44 | 44 | 'name' => 'admin', |
45 | 45 | 'filename' => 'admin_site', |
46 | 46 | 'delimiter' => '_', |
@@ -51,12 +51,12 @@ discard block |
||
51 | 51 | 'max_files' => 90, |
52 | 52 | 'log_dateformat' => 'Y-m-d H:i:s,u', |
53 | 53 | 'log_format' => '[%datetime%] %channel%.%level_name% [%session_id%] [%uid%] [%user_id%] [%class%:%function%:%line%] - %message% %context% %extra% [%method%, %url%, %ip%, %referrer%, %user_agent%]', |
54 | - ], |
|
54 | + ], |
|
55 | 55 | ], |
56 | 56 | 'exclude_keys' => |
57 | 57 | [ |
58 | - 'password', |
|
59 | - 'app', |
|
58 | + 'password', |
|
59 | + 'app', |
|
60 | + ], |
|
60 | 61 | ], |
61 | - ], |
|
62 | 62 | ]; |
@@ -1,266 +1,266 @@ |
||
1 | 1 | <?php return [ |
2 | - 'admin_home_urlpath' => '/admin/home.php', |
|
3 | - 'admin_id' => '1', |
|
4 | - 'admin_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/admin.log', |
|
5 | - 'admin_login_urlpath' => '/admin/', |
|
6 | - 'admin_logout_urlpath' => '/admin/logout.php', |
|
7 | - 'admin_mode' => 0, |
|
8 | - 'admin_news_startyear' => 2005, |
|
9 | - 'admin_order_edit_urlpath' => '/admin/order/edit.php', |
|
10 | - 'admin_order_mail_urlpath' => '/admin/order/mail.php', |
|
11 | - 'admin_order_urlpath' => '/admin/order/', |
|
12 | - 'admin_products_urlpath' => '/admin/products/', |
|
13 | - 'admin_system_urlpath' => '/admin/system/', |
|
14 | - 'amount_len' => 6, |
|
15 | - 'api_enable_flag' => false, |
|
16 | - 'auth_type' => 'HMAC', |
|
17 | - 'birth_month_point' => 0, |
|
18 | - 'birth_year' => 1901, |
|
19 | - 'bloc_dir' => 'frontparts/bloc/', |
|
20 | - 'cart_url' => 'http://ec-cube.eccube.localhost/cart/', |
|
21 | - 'category_head' => '>', |
|
22 | - 'category_max' => 1000, |
|
23 | - 'cert_string' => '7WDhcBTF', |
|
24 | - 'char_code' => 'UTF-8', |
|
25 | - 'close_day' => 31, |
|
26 | - 'compile_admin_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/admin/', |
|
27 | - 'compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/default/', |
|
28 | - 'cookie_expire' => 365, |
|
29 | - 'credit_add_year' => 10, |
|
30 | - 'credit_no_len' => 4, |
|
31 | - 'csv_line_max' => 10000, |
|
32 | - 'csv_size' => 5, |
|
33 | - 'csv_temp_realdir' => '/PATH/TO/WEB_ROOT/data/upload/csv/', |
|
34 | - 'customer_confirm_mail' => false, |
|
35 | - 'customer_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/customer.log', |
|
36 | - 'cv_payment_limit' => 14, |
|
37 | - 'db_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/db.log', |
|
38 | - 'debug_log_realfile' => '', |
|
39 | - 'debug_mode' => false, |
|
40 | - 'default_country_id' => 392, |
|
41 | - 'default_password' => '**********', |
|
42 | - 'default_product_disp' => 2, |
|
43 | - 'default_product_down' => 1, |
|
44 | - 'default_template_name' => 'default', |
|
45 | - 'deliv_addr_max' => 20, |
|
46 | - 'deliv_date_end_max' => 21, |
|
47 | - 'deliv_free_amount' => 0, |
|
48 | - 'deliv_urlpath' => '/shopping/deliv.php', |
|
49 | - 'delivfee_max' => 47, |
|
50 | - 'delivtime_max' => 16, |
|
51 | - 'device_type_admin' => 99, |
|
52 | - 'device_type_mobile' => 1, |
|
53 | - 'device_type_pc' => 10, |
|
54 | - 'device_type_smartphone' => 2, |
|
55 | - 'disabled_rgb' => '#C9C9C9', |
|
56 | - 'down_save_realdir' => '/PATH/TO/WEB_ROOT/data/download/save/', |
|
57 | - 'down_size' => 50000, |
|
58 | - 'down_temp_realdir' => '/PATH/TO/WEB_ROOT/data/download/temp/', |
|
59 | - 'download_block' => 1024, |
|
60 | - 'download_days_len' => 3, |
|
61 | - 'download_extension' => 'zip,lzh,jpg,jpeg,gif,png,mp3,pdf,csv', |
|
62 | - 'downloads_temp_plugin_install_dir' => '/PATH/TO/WEB_ROOT/data/downloads/tmp/plugin_install/', |
|
63 | - 'downloads_temp_plugin_update_dir' => '/PATH/TO/WEB_ROOT/data/downloads/tmp/plugin_update/', |
|
64 | - 'eccube_info' => true, |
|
65 | - 'eccube_payment' => 'EC-CUBE', |
|
66 | - 'entry_limit_hour' => 1, |
|
67 | - 'entry_url' => 'http://ec-cube.eccube.localhost/entry/', |
|
68 | - 'err_color' => '#ffe8e8', |
|
69 | - 'error_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/error.log', |
|
70 | - 'favorite_error' => 13, |
|
71 | - 'file_name_len' => 10, |
|
72 | - 'file_size' => 10000, |
|
73 | - 'forgot_mail' => 0, |
|
74 | - 'form_country_enable' => false, |
|
75 | - 'graph_label_max' => 40, |
|
76 | - 'graph_pie_max' => 10, |
|
77 | - 'graph_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/graph_image/', |
|
78 | - 'graph_urlpath' => '/upload/graph_image/', |
|
79 | - 'hook_point_preprocess' => 'LC_Page_preProcess', |
|
80 | - 'hook_point_process' => 'LC_Page_process', |
|
81 | - 'http_request_timeout' => '5', |
|
82 | - 'id_max_len' => 50, |
|
83 | - 'id_min_len' => 4, |
|
84 | - 'image_rename' => true, |
|
85 | - 'image_save_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/save_image/', |
|
86 | - 'image_save_rss_url' => 'http://ec-cube.eccube.localhost/upload/save_image/', |
|
87 | - 'image_save_urlpath' => '/upload/save_image/', |
|
88 | - 'image_size' => 1000, |
|
89 | - 'image_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_image/', |
|
90 | - 'image_temp_rss_url' => 'http://ec-cube.eccube.localhost/upload/temp_image/', |
|
91 | - 'image_temp_urlpath' => '/upload/temp_image/', |
|
92 | - 'input_deliv_fee' => 1, |
|
93 | - 'input_zip_urlpath' => '/input_zip.php', |
|
94 | - 'int_len' => 9, |
|
95 | - 'large_image_height' => 500, |
|
96 | - 'large_image_width' => 500, |
|
97 | - 'large_subimage_height' => 500, |
|
98 | - 'large_subimage_width' => 500, |
|
99 | - 'category_nest_level' => 5, |
|
100 | - 'lltext_len' => 99999, |
|
101 | - 'locale' => 'ja_JP.UTF-8', |
|
102 | - 'log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/site.log', |
|
103 | - 'login_frame' => 'login_frame.tpl', |
|
104 | - 'login_retry_interval' => 0, |
|
105 | - 'ltext_len' => 3000, |
|
106 | - 'main_frame' => 'main_frame.tpl', |
|
107 | - 'master_data_realdir' => '/PATH/TO/WEB_ROOT/data/cache/', |
|
108 | - 'max_lifetime' => 7200, |
|
109 | - 'max_log_quantity' => 5, |
|
110 | - 'max_log_size' => '1000000', |
|
111 | - 'max_total_fee' => 9999999999, |
|
112 | - 'member_pmax' => 10, |
|
113 | - 'mltext_len' => 1000, |
|
114 | - 'mobile_cart_urlpath' => '/cart/', |
|
115 | - 'mobile_compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/mobile/', |
|
116 | - 'mobile_default_template_name' => 'mobile', |
|
117 | - 'mobile_image_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/mobile_image/', |
|
118 | - 'mobile_image_urlpath' => '/upload/mobile_image/', |
|
119 | - 'mobile_p_detail_urlpath' => '/products/detail.php?product_id=', |
|
120 | - 'mobile_session_lifetime' => 1800, |
|
121 | - 'mobile_shopping_complete_urlpath' => '/shopping/complete.php', |
|
122 | - 'mobile_shopping_confirm_urlpath' => '/shopping/confirm.php', |
|
123 | - 'mobile_shopping_payment_urlpath' => '/shopping/payment.php', |
|
124 | - 'mobile_template_name' => 'mobile', |
|
125 | - 'mobile_template_realdir' => '/PATH/TO/WEB_ROOT/data/template/mobile/', |
|
126 | - 'mobile_top_urlpath' => '/', |
|
127 | - 'module_dir' => 'downloads/module/', |
|
128 | - 'module_realdir' => '/PATH/TO/WEB_ROOT/data/downloads/module/', |
|
129 | - 'mtext_len' => 200, |
|
130 | - 'multiple_urlpath' => '/shopping/multiple.php', |
|
131 | - 'mypage_delivaddr_urlpath' => '/mypage/delivery.php', |
|
132 | - 'mypage_order_status_disp_flag' => true, |
|
133 | - 'navi_pmax' => 4, |
|
134 | - 'no_image_realfile' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/packages/default/img/picture/img_blank.gif', |
|
135 | - 'normal_image_height' => 260, |
|
136 | - 'normal_image_width' => 260, |
|
137 | - 'normal_subimage_height' => 200, |
|
138 | - 'normal_subimage_width' => 200, |
|
139 | - 'nostock_hidden' => false, |
|
140 | - 'option_class_regist' => 1, |
|
141 | - 'option_deliv_fee' => 1, |
|
142 | - 'option_favorite_product' => 1, |
|
143 | - 'option_product_deliv_fee' => 0, |
|
144 | - 'option_recommend' => 1, |
|
145 | - 'order_back_order' => 4, |
|
146 | - 'order_cancel' => 3, |
|
147 | - 'order_deliv' => 5, |
|
148 | - 'order_new' => 1, |
|
149 | - 'order_pay_wait' => 2, |
|
150 | - 'order_pending' => 7, |
|
151 | - 'order_pre_end' => 6, |
|
152 | - 'order_processing' => 8, |
|
153 | - 'order_status_max' => 50, |
|
154 | - 'ostore_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/ownersstore.log', |
|
155 | - 'ostore_sslurl' => 'https://www.ec-cube.net/', |
|
156 | - 'ostore_url' => 'http://www.ec-cube.net/', |
|
157 | - 'p_detail_urlpath' => '/products/detail.php?product_id=', |
|
158 | - 'page_display_time_log_min_exec_time' => 2, |
|
159 | - 'page_display_time_log_mode' => 1, |
|
160 | - 'password_max_len' => 32, |
|
161 | - 'password_min_len' => 8, |
|
162 | - 'pear_db_debug' => 0, |
|
163 | - 'pear_db_persistent' => false, |
|
164 | - 'pending_order_cancel_flag' => true, |
|
165 | - 'pending_order_cancel_time' => 900, |
|
166 | - 'percentage_len' => 3, |
|
167 | - 'plugin_activate_flag' => true, |
|
168 | - 'plugin_dir' => 'plugins/', |
|
169 | - 'plugin_extension' => 'tar,tar.gz', |
|
170 | - 'plugin_html_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/plugin/', |
|
171 | - 'plugin_html_urlpath' => '/plugin/', |
|
172 | - 'plugin_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/plugin.log', |
|
173 | - 'plugin_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/plugins/', |
|
174 | - 'plugin_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_plugin/', |
|
175 | - 'plugin_upload_realdir' => '/PATH/TO/WEB_ROOT/data/downloads/plugin/', |
|
176 | - 'point_rule' => 2, |
|
177 | - 'point_value' => 1, |
|
178 | - 'price_len' => 8, |
|
179 | - 'product_type_download' => 2, |
|
180 | - 'product_type_normal' => 1, |
|
181 | - 'products_total_max' => 15, |
|
182 | - 'productsub_max' => 5, |
|
183 | - 'recommend_num' => 8, |
|
184 | - 'recommend_product_max' => 6, |
|
185 | - 'release_year' => 2005, |
|
186 | - 'review_allow_url' => 0, |
|
187 | - 'review_regist_max' => 5, |
|
188 | - 'rfc_compliant_email_check' => false, |
|
189 | - 'search_category_len' => 18, |
|
190 | - 'search_pmax' => 10, |
|
191 | - 'select_rgb' => '#ffffdf', |
|
192 | - 'sepa_catnavi' => ' > ', |
|
193 | - 'session_keep_method' => 'useCookie', |
|
194 | - 'session_lifetime' => 1800, |
|
195 | - 'shopping_complete_urlpath' => '/shopping/complete.php', |
|
196 | - 'shopping_confirm_urlpath' => '/shopping/confirm.php', |
|
197 | - 'shopping_module_urlpath' => '/shopping/load_payment_module.php', |
|
198 | - 'shopping_payment_urlpath' => '/shopping/payment.php', |
|
199 | - 'shopping_url' => 'http://ec-cube.eccube.localhost/shopping/', |
|
200 | - 'site_frame' => 'site_frame.tpl', |
|
201 | - 'sltext_len' => 500, |
|
202 | - 'small_image_height' => 130, |
|
203 | - 'small_image_width' => 130, |
|
204 | - 'smartphone_compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/sphone/', |
|
205 | - 'smartphone_default_template_name' => 'sphone', |
|
206 | - 'smartphone_template_name' => 'sphone', |
|
207 | - 'smartphone_template_realdir' => '/PATH/TO/WEB_ROOT/data/template/sphone/', |
|
208 | - 'smarty_force_compile_mode' => false, |
|
209 | - 'smarty_templates_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates/', |
|
210 | - 'smtext_len' => 100, |
|
211 | - 'sql_query_log_min_exec_time' => 2, |
|
212 | - 'sql_query_log_mode' => 1, |
|
213 | - 'start_birth_year' => 1970, |
|
214 | - 'stext_len' => 50, |
|
215 | - 'tax_rule_priority' => 'product_id,product_class_id,pref_id,country_id', |
|
216 | - 'tel_len' => 5, |
|
217 | - 'tel_len_min' => 1, |
|
218 | - 'tel_item_len' => 12, |
|
219 | - 'template_admin_realdir' => '/PATH/TO/WEB_ROOT/data/template/admin/', |
|
220 | - 'template_name' => 'default', |
|
221 | - 'template_realdir' => '/PATH/TO/WEB_ROOT/data/template/default/', |
|
222 | - 'template_size' => 10000, |
|
223 | - 'template_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_template/', |
|
224 | - 'top_url' => 'http://ec-cube.eccube.localhost/', |
|
225 | - 'transaction_id_name' => 'transactionid', |
|
226 | - 'update_http' => 'http://www.ec-cube.net/info/index.php', |
|
227 | - 'update_send_site_info' => false, |
|
228 | - 'url_len' => 1024, |
|
229 | - 'use_mobile' => true, |
|
230 | - 'use_multiple_shipping' => true, |
|
231 | - 'use_normalize_hostname' => true, |
|
232 | - 'use_point' => true, |
|
233 | - 'use_verbose_log' => false, |
|
234 | - 'user_def_php_realfile' => '/PATH/TO/WEB_ROOT/data/__default.php', |
|
235 | - 'user_dir' => 'user_data/', |
|
236 | - 'user_package_dir' => 'packages/', |
|
237 | - 'user_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/', |
|
238 | - 'user_template_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/packages/', |
|
239 | - 'user_url' => 'http://ec-cube.eccube.localhost/user_data/', |
|
240 | - 'zip_download_url' => 'http://www.post.japanpost.jp/zipcode/dl/kogaki/zip/ken_all.zip', |
|
241 | - 'zip01_len' => 3, |
|
242 | - 'zip02_len' => 4, |
|
243 | - 'default_page_count' => 10, |
|
244 | - 'admin_product_stock_status' => 3, |
|
245 | - 'enabled' => 1, |
|
246 | - 'disabled' => 0, |
|
247 | - 'eccube_info_url' => 'https://www.ec-cube.net/info/3/', |
|
248 | - 'customer_reset_expire' => 10, |
|
249 | - 'csv_export_separator' => ',', |
|
250 | - 'csv_export_encoding' => 'SJIS-win', |
|
251 | - 'csv_export_date_format' => 'Y-m-d H:i:s', |
|
252 | - 'csv_export_multidata_separator' => ',', |
|
253 | - 'csv_import_delimiter' => ',', |
|
254 | - 'csv_import_enclosure' => '"', |
|
255 | - 'csv_import_escape' => '\\', |
|
256 | - 'owners_store_url' => 'https://www.ec-cube.net/upgrade/api/index.php', |
|
257 | - 'name_len' => 16, |
|
258 | - 'kana_len' => 25, |
|
259 | - 'address1_len' => 32, |
|
260 | - 'address2_len' => 32, |
|
261 | - 'birth_max' => 110, |
|
262 | - 'product_order_price_lower' => 1, |
|
263 | - 'product_order_newer' => 2, |
|
264 | - 'product_order_price_higher' => 3, |
|
265 | - 'price_max' => 2147483647, |
|
2 | + 'admin_home_urlpath' => '/admin/home.php', |
|
3 | + 'admin_id' => '1', |
|
4 | + 'admin_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/admin.log', |
|
5 | + 'admin_login_urlpath' => '/admin/', |
|
6 | + 'admin_logout_urlpath' => '/admin/logout.php', |
|
7 | + 'admin_mode' => 0, |
|
8 | + 'admin_news_startyear' => 2005, |
|
9 | + 'admin_order_edit_urlpath' => '/admin/order/edit.php', |
|
10 | + 'admin_order_mail_urlpath' => '/admin/order/mail.php', |
|
11 | + 'admin_order_urlpath' => '/admin/order/', |
|
12 | + 'admin_products_urlpath' => '/admin/products/', |
|
13 | + 'admin_system_urlpath' => '/admin/system/', |
|
14 | + 'amount_len' => 6, |
|
15 | + 'api_enable_flag' => false, |
|
16 | + 'auth_type' => 'HMAC', |
|
17 | + 'birth_month_point' => 0, |
|
18 | + 'birth_year' => 1901, |
|
19 | + 'bloc_dir' => 'frontparts/bloc/', |
|
20 | + 'cart_url' => 'http://ec-cube.eccube.localhost/cart/', |
|
21 | + 'category_head' => '>', |
|
22 | + 'category_max' => 1000, |
|
23 | + 'cert_string' => '7WDhcBTF', |
|
24 | + 'char_code' => 'UTF-8', |
|
25 | + 'close_day' => 31, |
|
26 | + 'compile_admin_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/admin/', |
|
27 | + 'compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/default/', |
|
28 | + 'cookie_expire' => 365, |
|
29 | + 'credit_add_year' => 10, |
|
30 | + 'credit_no_len' => 4, |
|
31 | + 'csv_line_max' => 10000, |
|
32 | + 'csv_size' => 5, |
|
33 | + 'csv_temp_realdir' => '/PATH/TO/WEB_ROOT/data/upload/csv/', |
|
34 | + 'customer_confirm_mail' => false, |
|
35 | + 'customer_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/customer.log', |
|
36 | + 'cv_payment_limit' => 14, |
|
37 | + 'db_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/db.log', |
|
38 | + 'debug_log_realfile' => '', |
|
39 | + 'debug_mode' => false, |
|
40 | + 'default_country_id' => 392, |
|
41 | + 'default_password' => '**********', |
|
42 | + 'default_product_disp' => 2, |
|
43 | + 'default_product_down' => 1, |
|
44 | + 'default_template_name' => 'default', |
|
45 | + 'deliv_addr_max' => 20, |
|
46 | + 'deliv_date_end_max' => 21, |
|
47 | + 'deliv_free_amount' => 0, |
|
48 | + 'deliv_urlpath' => '/shopping/deliv.php', |
|
49 | + 'delivfee_max' => 47, |
|
50 | + 'delivtime_max' => 16, |
|
51 | + 'device_type_admin' => 99, |
|
52 | + 'device_type_mobile' => 1, |
|
53 | + 'device_type_pc' => 10, |
|
54 | + 'device_type_smartphone' => 2, |
|
55 | + 'disabled_rgb' => '#C9C9C9', |
|
56 | + 'down_save_realdir' => '/PATH/TO/WEB_ROOT/data/download/save/', |
|
57 | + 'down_size' => 50000, |
|
58 | + 'down_temp_realdir' => '/PATH/TO/WEB_ROOT/data/download/temp/', |
|
59 | + 'download_block' => 1024, |
|
60 | + 'download_days_len' => 3, |
|
61 | + 'download_extension' => 'zip,lzh,jpg,jpeg,gif,png,mp3,pdf,csv', |
|
62 | + 'downloads_temp_plugin_install_dir' => '/PATH/TO/WEB_ROOT/data/downloads/tmp/plugin_install/', |
|
63 | + 'downloads_temp_plugin_update_dir' => '/PATH/TO/WEB_ROOT/data/downloads/tmp/plugin_update/', |
|
64 | + 'eccube_info' => true, |
|
65 | + 'eccube_payment' => 'EC-CUBE', |
|
66 | + 'entry_limit_hour' => 1, |
|
67 | + 'entry_url' => 'http://ec-cube.eccube.localhost/entry/', |
|
68 | + 'err_color' => '#ffe8e8', |
|
69 | + 'error_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/error.log', |
|
70 | + 'favorite_error' => 13, |
|
71 | + 'file_name_len' => 10, |
|
72 | + 'file_size' => 10000, |
|
73 | + 'forgot_mail' => 0, |
|
74 | + 'form_country_enable' => false, |
|
75 | + 'graph_label_max' => 40, |
|
76 | + 'graph_pie_max' => 10, |
|
77 | + 'graph_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/graph_image/', |
|
78 | + 'graph_urlpath' => '/upload/graph_image/', |
|
79 | + 'hook_point_preprocess' => 'LC_Page_preProcess', |
|
80 | + 'hook_point_process' => 'LC_Page_process', |
|
81 | + 'http_request_timeout' => '5', |
|
82 | + 'id_max_len' => 50, |
|
83 | + 'id_min_len' => 4, |
|
84 | + 'image_rename' => true, |
|
85 | + 'image_save_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/save_image/', |
|
86 | + 'image_save_rss_url' => 'http://ec-cube.eccube.localhost/upload/save_image/', |
|
87 | + 'image_save_urlpath' => '/upload/save_image/', |
|
88 | + 'image_size' => 1000, |
|
89 | + 'image_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_image/', |
|
90 | + 'image_temp_rss_url' => 'http://ec-cube.eccube.localhost/upload/temp_image/', |
|
91 | + 'image_temp_urlpath' => '/upload/temp_image/', |
|
92 | + 'input_deliv_fee' => 1, |
|
93 | + 'input_zip_urlpath' => '/input_zip.php', |
|
94 | + 'int_len' => 9, |
|
95 | + 'large_image_height' => 500, |
|
96 | + 'large_image_width' => 500, |
|
97 | + 'large_subimage_height' => 500, |
|
98 | + 'large_subimage_width' => 500, |
|
99 | + 'category_nest_level' => 5, |
|
100 | + 'lltext_len' => 99999, |
|
101 | + 'locale' => 'ja_JP.UTF-8', |
|
102 | + 'log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/site.log', |
|
103 | + 'login_frame' => 'login_frame.tpl', |
|
104 | + 'login_retry_interval' => 0, |
|
105 | + 'ltext_len' => 3000, |
|
106 | + 'main_frame' => 'main_frame.tpl', |
|
107 | + 'master_data_realdir' => '/PATH/TO/WEB_ROOT/data/cache/', |
|
108 | + 'max_lifetime' => 7200, |
|
109 | + 'max_log_quantity' => 5, |
|
110 | + 'max_log_size' => '1000000', |
|
111 | + 'max_total_fee' => 9999999999, |
|
112 | + 'member_pmax' => 10, |
|
113 | + 'mltext_len' => 1000, |
|
114 | + 'mobile_cart_urlpath' => '/cart/', |
|
115 | + 'mobile_compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/mobile/', |
|
116 | + 'mobile_default_template_name' => 'mobile', |
|
117 | + 'mobile_image_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/mobile_image/', |
|
118 | + 'mobile_image_urlpath' => '/upload/mobile_image/', |
|
119 | + 'mobile_p_detail_urlpath' => '/products/detail.php?product_id=', |
|
120 | + 'mobile_session_lifetime' => 1800, |
|
121 | + 'mobile_shopping_complete_urlpath' => '/shopping/complete.php', |
|
122 | + 'mobile_shopping_confirm_urlpath' => '/shopping/confirm.php', |
|
123 | + 'mobile_shopping_payment_urlpath' => '/shopping/payment.php', |
|
124 | + 'mobile_template_name' => 'mobile', |
|
125 | + 'mobile_template_realdir' => '/PATH/TO/WEB_ROOT/data/template/mobile/', |
|
126 | + 'mobile_top_urlpath' => '/', |
|
127 | + 'module_dir' => 'downloads/module/', |
|
128 | + 'module_realdir' => '/PATH/TO/WEB_ROOT/data/downloads/module/', |
|
129 | + 'mtext_len' => 200, |
|
130 | + 'multiple_urlpath' => '/shopping/multiple.php', |
|
131 | + 'mypage_delivaddr_urlpath' => '/mypage/delivery.php', |
|
132 | + 'mypage_order_status_disp_flag' => true, |
|
133 | + 'navi_pmax' => 4, |
|
134 | + 'no_image_realfile' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/packages/default/img/picture/img_blank.gif', |
|
135 | + 'normal_image_height' => 260, |
|
136 | + 'normal_image_width' => 260, |
|
137 | + 'normal_subimage_height' => 200, |
|
138 | + 'normal_subimage_width' => 200, |
|
139 | + 'nostock_hidden' => false, |
|
140 | + 'option_class_regist' => 1, |
|
141 | + 'option_deliv_fee' => 1, |
|
142 | + 'option_favorite_product' => 1, |
|
143 | + 'option_product_deliv_fee' => 0, |
|
144 | + 'option_recommend' => 1, |
|
145 | + 'order_back_order' => 4, |
|
146 | + 'order_cancel' => 3, |
|
147 | + 'order_deliv' => 5, |
|
148 | + 'order_new' => 1, |
|
149 | + 'order_pay_wait' => 2, |
|
150 | + 'order_pending' => 7, |
|
151 | + 'order_pre_end' => 6, |
|
152 | + 'order_processing' => 8, |
|
153 | + 'order_status_max' => 50, |
|
154 | + 'ostore_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/ownersstore.log', |
|
155 | + 'ostore_sslurl' => 'https://www.ec-cube.net/', |
|
156 | + 'ostore_url' => 'http://www.ec-cube.net/', |
|
157 | + 'p_detail_urlpath' => '/products/detail.php?product_id=', |
|
158 | + 'page_display_time_log_min_exec_time' => 2, |
|
159 | + 'page_display_time_log_mode' => 1, |
|
160 | + 'password_max_len' => 32, |
|
161 | + 'password_min_len' => 8, |
|
162 | + 'pear_db_debug' => 0, |
|
163 | + 'pear_db_persistent' => false, |
|
164 | + 'pending_order_cancel_flag' => true, |
|
165 | + 'pending_order_cancel_time' => 900, |
|
166 | + 'percentage_len' => 3, |
|
167 | + 'plugin_activate_flag' => true, |
|
168 | + 'plugin_dir' => 'plugins/', |
|
169 | + 'plugin_extension' => 'tar,tar.gz', |
|
170 | + 'plugin_html_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/plugin/', |
|
171 | + 'plugin_html_urlpath' => '/plugin/', |
|
172 | + 'plugin_log_realfile' => '/PATH/TO/WEB_ROOT/data/logs/plugin.log', |
|
173 | + 'plugin_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/plugins/', |
|
174 | + 'plugin_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_plugin/', |
|
175 | + 'plugin_upload_realdir' => '/PATH/TO/WEB_ROOT/data/downloads/plugin/', |
|
176 | + 'point_rule' => 2, |
|
177 | + 'point_value' => 1, |
|
178 | + 'price_len' => 8, |
|
179 | + 'product_type_download' => 2, |
|
180 | + 'product_type_normal' => 1, |
|
181 | + 'products_total_max' => 15, |
|
182 | + 'productsub_max' => 5, |
|
183 | + 'recommend_num' => 8, |
|
184 | + 'recommend_product_max' => 6, |
|
185 | + 'release_year' => 2005, |
|
186 | + 'review_allow_url' => 0, |
|
187 | + 'review_regist_max' => 5, |
|
188 | + 'rfc_compliant_email_check' => false, |
|
189 | + 'search_category_len' => 18, |
|
190 | + 'search_pmax' => 10, |
|
191 | + 'select_rgb' => '#ffffdf', |
|
192 | + 'sepa_catnavi' => ' > ', |
|
193 | + 'session_keep_method' => 'useCookie', |
|
194 | + 'session_lifetime' => 1800, |
|
195 | + 'shopping_complete_urlpath' => '/shopping/complete.php', |
|
196 | + 'shopping_confirm_urlpath' => '/shopping/confirm.php', |
|
197 | + 'shopping_module_urlpath' => '/shopping/load_payment_module.php', |
|
198 | + 'shopping_payment_urlpath' => '/shopping/payment.php', |
|
199 | + 'shopping_url' => 'http://ec-cube.eccube.localhost/shopping/', |
|
200 | + 'site_frame' => 'site_frame.tpl', |
|
201 | + 'sltext_len' => 500, |
|
202 | + 'small_image_height' => 130, |
|
203 | + 'small_image_width' => 130, |
|
204 | + 'smartphone_compile_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates_c/sphone/', |
|
205 | + 'smartphone_default_template_name' => 'sphone', |
|
206 | + 'smartphone_template_name' => 'sphone', |
|
207 | + 'smartphone_template_realdir' => '/PATH/TO/WEB_ROOT/data/template/sphone/', |
|
208 | + 'smarty_force_compile_mode' => false, |
|
209 | + 'smarty_templates_realdir' => '/PATH/TO/WEB_ROOT/data/Smarty/templates/', |
|
210 | + 'smtext_len' => 100, |
|
211 | + 'sql_query_log_min_exec_time' => 2, |
|
212 | + 'sql_query_log_mode' => 1, |
|
213 | + 'start_birth_year' => 1970, |
|
214 | + 'stext_len' => 50, |
|
215 | + 'tax_rule_priority' => 'product_id,product_class_id,pref_id,country_id', |
|
216 | + 'tel_len' => 5, |
|
217 | + 'tel_len_min' => 1, |
|
218 | + 'tel_item_len' => 12, |
|
219 | + 'template_admin_realdir' => '/PATH/TO/WEB_ROOT/data/template/admin/', |
|
220 | + 'template_name' => 'default', |
|
221 | + 'template_realdir' => '/PATH/TO/WEB_ROOT/data/template/default/', |
|
222 | + 'template_size' => 10000, |
|
223 | + 'template_temp_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/upload/temp_template/', |
|
224 | + 'top_url' => 'http://ec-cube.eccube.localhost/', |
|
225 | + 'transaction_id_name' => 'transactionid', |
|
226 | + 'update_http' => 'http://www.ec-cube.net/info/index.php', |
|
227 | + 'update_send_site_info' => false, |
|
228 | + 'url_len' => 1024, |
|
229 | + 'use_mobile' => true, |
|
230 | + 'use_multiple_shipping' => true, |
|
231 | + 'use_normalize_hostname' => true, |
|
232 | + 'use_point' => true, |
|
233 | + 'use_verbose_log' => false, |
|
234 | + 'user_def_php_realfile' => '/PATH/TO/WEB_ROOT/data/__default.php', |
|
235 | + 'user_dir' => 'user_data/', |
|
236 | + 'user_package_dir' => 'packages/', |
|
237 | + 'user_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/', |
|
238 | + 'user_template_realdir' => '/PATH/TO/WEB_ROOT/src/Eccube/Repository/Master/user_data/packages/', |
|
239 | + 'user_url' => 'http://ec-cube.eccube.localhost/user_data/', |
|
240 | + 'zip_download_url' => 'http://www.post.japanpost.jp/zipcode/dl/kogaki/zip/ken_all.zip', |
|
241 | + 'zip01_len' => 3, |
|
242 | + 'zip02_len' => 4, |
|
243 | + 'default_page_count' => 10, |
|
244 | + 'admin_product_stock_status' => 3, |
|
245 | + 'enabled' => 1, |
|
246 | + 'disabled' => 0, |
|
247 | + 'eccube_info_url' => 'https://www.ec-cube.net/info/3/', |
|
248 | + 'customer_reset_expire' => 10, |
|
249 | + 'csv_export_separator' => ',', |
|
250 | + 'csv_export_encoding' => 'SJIS-win', |
|
251 | + 'csv_export_date_format' => 'Y-m-d H:i:s', |
|
252 | + 'csv_export_multidata_separator' => ',', |
|
253 | + 'csv_import_delimiter' => ',', |
|
254 | + 'csv_import_enclosure' => '"', |
|
255 | + 'csv_import_escape' => '\\', |
|
256 | + 'owners_store_url' => 'https://www.ec-cube.net/upgrade/api/index.php', |
|
257 | + 'name_len' => 16, |
|
258 | + 'kana_len' => 25, |
|
259 | + 'address1_len' => 32, |
|
260 | + 'address2_len' => 32, |
|
261 | + 'birth_max' => 110, |
|
262 | + 'product_order_price_lower' => 1, |
|
263 | + 'product_order_newer' => 2, |
|
264 | + 'product_order_price_higher' => 3, |
|
265 | + 'price_max' => 2147483647, |
|
266 | 266 | ]; |
@@ -1,287 +1,287 @@ |
||
1 | 1 | <?php return [ |
2 | - [ |
|
2 | + [ |
|
3 | 3 | 'id' => 'product', |
4 | 4 | 'name' => '商品管理', |
5 | 5 | 'has_child' => true, |
6 | 6 | 'icon' => 'cb-tag', |
7 | 7 | 'child' => |
8 | 8 | [ |
9 | - [ |
|
9 | + [ |
|
10 | 10 | 'id' => 'product_master', |
11 | 11 | 'name' => '商品マスター', |
12 | 12 | 'url' => 'admin_product', |
13 | - ], |
|
14 | - [ |
|
13 | + ], |
|
14 | + [ |
|
15 | 15 | 'id' => 'product_edit', |
16 | 16 | 'name' => '商品登録', |
17 | 17 | 'url' => 'admin_product_product_new', |
18 | - ], |
|
19 | - [ |
|
18 | + ], |
|
19 | + [ |
|
20 | 20 | 'id' => 'class_name', |
21 | 21 | 'name' => '規格登録', |
22 | 22 | 'url' => 'admin_product_class_name', |
23 | - ], |
|
24 | - [ |
|
23 | + ], |
|
24 | + [ |
|
25 | 25 | 'id' => 'class_category', |
26 | 26 | 'name' => 'カテゴリ登録', |
27 | 27 | 'url' => 'admin_product_category', |
28 | - ], |
|
29 | - [ |
|
28 | + ], |
|
29 | + [ |
|
30 | 30 | 'id' => 'product_csv_import', |
31 | 31 | 'name' => '商品CSV登録', |
32 | 32 | 'url' => 'admin_product_csv_import', |
33 | - ], |
|
34 | - [ |
|
33 | + ], |
|
34 | + [ |
|
35 | 35 | 'id' => 'category_csv_import', |
36 | 36 | 'name' => 'カテゴリCSV登録', |
37 | 37 | 'url' => 'admin_product_category_csv_import', |
38 | - ], |
|
38 | + ], |
|
39 | + ], |
|
39 | 40 | ], |
40 | - ], |
|
41 | - [ |
|
41 | + [ |
|
42 | 42 | 'id' => 'order', |
43 | 43 | 'name' => '受注管理', |
44 | 44 | 'has_child' => true, |
45 | 45 | 'icon' => 'cb-shopping-cart', |
46 | 46 | 'child' => |
47 | 47 | [ |
48 | - [ |
|
48 | + [ |
|
49 | 49 | 'id' => 'order_master', |
50 | 50 | 'name' => '受注マスター', |
51 | 51 | 'url' => 'admin_order', |
52 | - ], |
|
53 | - [ |
|
52 | + ], |
|
53 | + [ |
|
54 | 54 | 'id' => 'order_edit', |
55 | 55 | 'name' => '受注登録', |
56 | 56 | 'url' => 'admin_order_new', |
57 | - ], |
|
57 | + ], |
|
58 | 58 | ], |
59 | - ], |
|
60 | - [ |
|
59 | + ], |
|
60 | + [ |
|
61 | 61 | 'id' => 'shipping', |
62 | 62 | 'name' => '出荷管理', |
63 | 63 | 'has_child' => true, |
64 | 64 | 'icon' => 'cb-shopping-cart', |
65 | 65 | 'child' => |
66 | 66 | [ |
67 | - [ |
|
67 | + [ |
|
68 | 68 | 'id' => 'shipping_master', |
69 | 69 | 'name' => '出荷マスター', |
70 | 70 | 'url' => 'admin/shipping', |
71 | - ], |
|
72 | - [ |
|
71 | + ], |
|
72 | + [ |
|
73 | 73 | 'id' => 'shipping_edit', |
74 | 74 | 'name' => '出荷登録', |
75 | 75 | 'url' => 'admin/shipping/new', |
76 | - ], |
|
76 | + ], |
|
77 | 77 | ], |
78 | - ], |
|
79 | - [ |
|
78 | + ], |
|
79 | + [ |
|
80 | 80 | 'id' => 'customer', |
81 | 81 | 'name' => '会員管理', |
82 | 82 | 'has_child' => true, |
83 | 83 | 'icon' => 'cb-users', |
84 | 84 | 'child' => |
85 | 85 | [ |
86 | - [ |
|
86 | + [ |
|
87 | 87 | 'id' => 'customer_master', |
88 | 88 | 'name' => '会員マスター', |
89 | 89 | 'url' => 'admin_customer', |
90 | - ], |
|
91 | - [ |
|
90 | + ], |
|
91 | + [ |
|
92 | 92 | 'id' => 'customer_edit', |
93 | 93 | 'name' => '会員登録', |
94 | 94 | 'url' => 'admin_customer_new', |
95 | - ], |
|
95 | + ], |
|
96 | + ], |
|
96 | 97 | ], |
97 | - ], |
|
98 | - [ |
|
98 | + [ |
|
99 | 99 | 'id' => 'content', |
100 | 100 | 'name' => 'コンテンツ管理', |
101 | 101 | 'has_child' => true, |
102 | 102 | 'icon' => 'cb-file-text', |
103 | 103 | 'child' => |
104 | 104 | [ |
105 | - [ |
|
105 | + [ |
|
106 | 106 | 'id' => 'news', |
107 | 107 | 'name' => '新着情報管理', |
108 | 108 | 'url' => 'admin_content_news', |
109 | - ], |
|
110 | - [ |
|
109 | + ], |
|
110 | + [ |
|
111 | 111 | 'id' => 'file', |
112 | 112 | 'name' => 'ファイル管理', |
113 | 113 | 'url' => 'admin_content_file', |
114 | - ], |
|
115 | - [ |
|
114 | + ], |
|
115 | + [ |
|
116 | 116 | 'id' => 'layout', |
117 | 117 | 'name' => 'レイアウト管理', |
118 | 118 | 'url' => 'admin_content_layout', |
119 | - ], |
|
120 | - [ |
|
119 | + ], |
|
120 | + [ |
|
121 | 121 | 'id' => 'page', |
122 | 122 | 'name' => 'ページ管理', |
123 | 123 | 'url' => 'admin_content_page', |
124 | - ], |
|
125 | - [ |
|
124 | + ], |
|
125 | + [ |
|
126 | 126 | 'id' => 'block', |
127 | 127 | 'name' => 'ブロック管理', |
128 | 128 | 'url' => 'admin_content_block', |
129 | - ], |
|
130 | - [ |
|
129 | + ], |
|
130 | + [ |
|
131 | 131 | 'id' => 'cache', |
132 | 132 | 'name' => 'キャッシュ管理', |
133 | 133 | 'url' => 'admin_content_cache', |
134 | - ], |
|
134 | + ], |
|
135 | 135 | ], |
136 | - ], |
|
137 | - [ |
|
136 | + ], |
|
137 | + [ |
|
138 | 138 | 'id' => 'setting', |
139 | 139 | 'name' => '設定', |
140 | 140 | 'has_child' => true, |
141 | 141 | 'icon' => 'cb-cog', |
142 | 142 | 'child' => |
143 | 143 | [ |
144 | - [ |
|
144 | + [ |
|
145 | 145 | 'id' => 'shop', |
146 | 146 | 'name' => '基本情報設定', |
147 | 147 | 'has_child' => true, |
148 | 148 | 'child' => |
149 | 149 | [ |
150 | - [ |
|
150 | + [ |
|
151 | 151 | 'id' => 'shop_index', |
152 | 152 | 'name' => 'ショップマスター', |
153 | 153 | 'url' => 'admin_setting_shop', |
154 | - ], |
|
155 | - [ |
|
154 | + ], |
|
155 | + [ |
|
156 | 156 | 'id' => 'tradelaw', |
157 | 157 | 'name' => '特定商取引法', |
158 | 158 | 'url' => 'admin_setting_shop_tradelaw', |
159 | - ], |
|
160 | - [ |
|
159 | + ], |
|
160 | + [ |
|
161 | 161 | 'id' => 'customer_agreement', |
162 | 162 | 'name' => '利用規約設定', |
163 | 163 | 'url' => 'admin_setting_shop_customer_agreement', |
164 | - ], |
|
165 | - [ |
|
164 | + ], |
|
165 | + [ |
|
166 | 166 | 'id' => 'shop_payment', |
167 | 167 | 'name' => '支払方法設定', |
168 | 168 | 'url' => 'admin_setting_shop_payment', |
169 | - ], |
|
170 | - [ |
|
169 | + ], |
|
170 | + [ |
|
171 | 171 | 'id' => 'shop_delivery', |
172 | 172 | 'name' => '配送方法設定', |
173 | 173 | 'url' => 'admin_setting_shop_delivery', |
174 | - ], |
|
175 | - [ |
|
174 | + ], |
|
175 | + [ |
|
176 | 176 | 'id' => 'shop_tax', |
177 | 177 | 'name' => '税率設定', |
178 | 178 | 'url' => 'admin_setting_shop_tax', |
179 | - ], |
|
180 | - [ |
|
179 | + ], |
|
180 | + [ |
|
181 | 181 | 'id' => 'shop_mail', |
182 | 182 | 'name' => 'メール設定', |
183 | 183 | 'url' => 'admin_setting_shop_mail', |
184 | - ], |
|
185 | - [ |
|
184 | + ], |
|
185 | + [ |
|
186 | 186 | 'id' => 'shop_csv', |
187 | 187 | 'name' => 'CSV出力項目設定', |
188 | 188 | 'url' => 'admin_setting_shop_csv', |
189 | - ], |
|
189 | + ], |
|
190 | + ], |
|
190 | 191 | ], |
191 | - ], |
|
192 | - [ |
|
192 | + [ |
|
193 | 193 | 'id' => 'system', |
194 | 194 | 'name' => 'システム情報設定', |
195 | 195 | 'has_child' => true, |
196 | 196 | 'child' => |
197 | 197 | [ |
198 | - [ |
|
198 | + [ |
|
199 | 199 | 'id' => 'system_index', |
200 | 200 | 'name' => 'システム情報', |
201 | 201 | 'url' => 'admin_setting_system_system', |
202 | - ], |
|
203 | - [ |
|
202 | + ], |
|
203 | + [ |
|
204 | 204 | 'id' => 'member', |
205 | 205 | 'name' => 'メンバー管理', |
206 | 206 | 'url' => 'admin_setting_system_member', |
207 | - ], |
|
208 | - [ |
|
207 | + ], |
|
208 | + [ |
|
209 | 209 | 'id' => 'authority', |
210 | 210 | 'name' => '権限管理', |
211 | 211 | 'url' => 'admin_setting_system_authority', |
212 | - ], |
|
213 | - [ |
|
212 | + ], |
|
213 | + [ |
|
214 | 214 | 'id' => 'security', |
215 | 215 | 'name' => 'セキュリティ管理', |
216 | 216 | 'url' => 'admin_setting_system_security', |
217 | - ], |
|
218 | - [ |
|
217 | + ], |
|
218 | + [ |
|
219 | 219 | 'id' => 'log', |
220 | 220 | 'name' => 'EC-CUBE ログ表示', |
221 | 221 | 'url' => 'admin_setting_system_log', |
222 | - ], |
|
223 | - [ |
|
222 | + ], |
|
223 | + [ |
|
224 | 224 | 'id' => 'masterdata', |
225 | 225 | 'name' => 'マスターデータ管理', |
226 | 226 | 'url' => 'admin_setting_system_masterdata', |
227 | - ], |
|
227 | + ], |
|
228 | + ], |
|
228 | 229 | ], |
229 | - ], |
|
230 | 230 | ], |
231 | - ], |
|
232 | - [ |
|
231 | + ], |
|
232 | + [ |
|
233 | 233 | 'id' => 'store', |
234 | 234 | 'name' => 'オーナーズストア', |
235 | 235 | 'has_child' => true, |
236 | 236 | 'icon' => 'cb-info-circle', |
237 | 237 | 'child' => |
238 | 238 | [ |
239 | - [ |
|
239 | + [ |
|
240 | 240 | 'id' => 'plugin', |
241 | 241 | 'name' => 'プラグイン', |
242 | 242 | 'has_child' => true, |
243 | 243 | 'child' => |
244 | 244 | [ |
245 | - [ |
|
245 | + [ |
|
246 | 246 | 'id' => 'plugin_list', |
247 | 247 | 'name' => 'プラグイン一覧', |
248 | 248 | 'url' => 'admin_store_plugin', |
249 | - ], |
|
250 | - [ |
|
249 | + ], |
|
250 | + [ |
|
251 | 251 | 'id' => 'plugin_owners_install', |
252 | 252 | 'name' => '購入済プラグイン', |
253 | 253 | 'url' => 'admin_store_plugin_owners_install', |
254 | - ], |
|
255 | - [ |
|
254 | + ], |
|
255 | + [ |
|
256 | 256 | 'id' => 'plugin_handler', |
257 | 257 | 'name' => '高度な設定', |
258 | 258 | 'url' => 'admin_store_plugin_handler', |
259 | - ], |
|
259 | + ], |
|
260 | + ], |
|
260 | 261 | ], |
261 | - ], |
|
262 | - [ |
|
262 | + [ |
|
263 | 263 | 'id' => 'template', |
264 | 264 | 'name' => 'テンプレート', |
265 | 265 | 'has_child' => true, |
266 | 266 | 'child' => |
267 | 267 | [ |
268 | - [ |
|
268 | + [ |
|
269 | 269 | 'id' => 'template_list', |
270 | 270 | 'name' => 'テンプレート一覧', |
271 | 271 | 'url' => 'admin_store_template', |
272 | - ], |
|
273 | - [ |
|
272 | + ], |
|
273 | + [ |
|
274 | 274 | 'id' => 'template_install', |
275 | 275 | 'name' => 'アップロード', |
276 | 276 | 'url' => 'admin_store_template_install', |
277 | - ], |
|
277 | + ], |
|
278 | + ], |
|
278 | 279 | ], |
279 | - ], |
|
280 | - [ |
|
280 | + [ |
|
281 | 281 | 'id' => 'authentication_setting', |
282 | 282 | 'name' => '認証キー設定', |
283 | 283 | 'url' => 'admin_store_authentication_setting', |
284 | - ], |
|
284 | + ], |
|
285 | + ], |
|
285 | 286 | ], |
286 | - ], |
|
287 | 287 | ]; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php return [ |
2 | - 'http_cache' => |
|
3 | - [ |
|
2 | + 'http_cache' => |
|
3 | + [ |
|
4 | 4 | 'enabled' => false, |
5 | 5 | 'age' => 10, |
6 | 6 | // フロントでキャッシュを適用させる画面のrouteを設定 |
@@ -17,5 +17,5 @@ discard block |
||
17 | 17 | // 'help_tradelaw', |
18 | 18 | // 'help_agreement', |
19 | 19 | ], |
20 | - ], |
|
20 | + ], |
|
21 | 21 | ]; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php return [ |
2 | - 'mail' => |
|
3 | - [ |
|
2 | + 'mail' => |
|
3 | + [ |
|
4 | 4 | 'transport' => '${MAIL_BACKEND}', |
5 | 5 | 'host' => '${MAIL_HOST}', |
6 | 6 | 'port' => '${MAIL_PORT}', |
@@ -10,5 +10,5 @@ discard block |
||
10 | 10 | 'auth_mode' => NULL, |
11 | 11 | 'charset_iso_2022_jp' => false, |
12 | 12 | 'spool' => false, |
13 | - ], |
|
13 | + ], |
|
14 | 14 | ]; |
@@ -1,17 +1,17 @@ |
||
1 | 1 | <?php return [ |
2 | - 'auth_magic' => '${AUTH_MAGIC}', |
|
3 | - 'password_hash_algos' => 'sha256', |
|
4 | - 'shop_name' => '${SHOP_NAME}', |
|
5 | - 'force_ssl' => '${FORCE_SSL}', |
|
6 | - 'admin_allow_host' => NULL, |
|
7 | - 'cookie_lifetime' => 0, |
|
8 | - 'cookie_name' => 'eccube', |
|
9 | - 'locale' => 'ja', |
|
10 | - 'timezone' => 'Asia/Tokyo', |
|
11 | - 'currency' => 'JPY', |
|
12 | - 'pageinrange' => false, |
|
13 | - 'trusted_proxies_connection_only' => false, |
|
14 | - 'trusted_proxies' => |
|
15 | - [ |
|
16 | - ], |
|
2 | + 'auth_magic' => '${AUTH_MAGIC}', |
|
3 | + 'password_hash_algos' => 'sha256', |
|
4 | + 'shop_name' => '${SHOP_NAME}', |
|
5 | + 'force_ssl' => '${FORCE_SSL}', |
|
6 | + 'admin_allow_host' => NULL, |
|
7 | + 'cookie_lifetime' => 0, |
|
8 | + 'cookie_name' => 'eccube', |
|
9 | + 'locale' => 'ja', |
|
10 | + 'timezone' => 'Asia/Tokyo', |
|
11 | + 'currency' => 'JPY', |
|
12 | + 'pageinrange' => false, |
|
13 | + 'trusted_proxies_connection_only' => false, |
|
14 | + 'trusted_proxies' => |
|
15 | + [ |
|
16 | + ], |
|
17 | 17 | ]; |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php return [ |
2 | - 'database' => |
|
3 | - [ |
|
2 | + 'database' => |
|
3 | + [ |
|
4 | 4 | 'driver' => '${DBDRIVER}', |
5 | 5 | 'path' => '${DBPATH}', |
6 | - ], |
|
6 | + ], |
|
7 | 7 | ]; |