src/Eccube/Command/LoadDataFixturesEccubeCommand.php 1 location
|
@@ 120-126 (lines=7) @@
|
| 117 |
|
]); |
| 118 |
|
|
| 119 |
|
$faviconPath = '/assets/img/common/favicon.ico'; |
| 120 |
|
if (!file_exists($this->container->getParameter('eccube_html_dir').'/user_data'.$faviconPath)) { |
| 121 |
|
$file = new Filesystem(); |
| 122 |
|
$file->copy( |
| 123 |
|
$this->container->getParameter('eccube_html_front_dir').$faviconPath, |
| 124 |
|
$this->container->getParameter('eccube_html_dir').'/user_data'.$faviconPath |
| 125 |
|
); |
| 126 |
|
} |
| 127 |
|
|
| 128 |
|
$output->writeln(sprintf(' <comment>></comment> <info>%s</info>', 'Finished Successful!')); |
| 129 |
|
} |
src/Eccube/Controller/Install/InstallController.php 1 location
|
@@ 237-243 (lines=7) @@
|
| 234 |
|
} |
| 235 |
|
|
| 236 |
|
$faviconPath = '/assets/img/common/favicon.ico'; |
| 237 |
|
if (!file_exists($this->getParameter('eccube_html_dir').'/user_data'.$faviconPath)) { |
| 238 |
|
$file = new Filesystem(); |
| 239 |
|
$file->copy( |
| 240 |
|
$this->getParameter('eccube_html_front_dir').$faviconPath, |
| 241 |
|
$this->getParameter('eccube_html_dir').'/user_data'.$faviconPath |
| 242 |
|
); |
| 243 |
|
} |
| 244 |
|
|
| 245 |
|
return [ |
| 246 |
|
'noWritePermissions' => $noWritePermissions, |