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
|
@@ 193-199 (lines=7) @@
|
| 190 |
|
} |
| 191 |
|
|
| 192 |
|
$faviconPath = '/assets/img/common/favicon.ico'; |
| 193 |
|
if (!file_exists($this->getParameter('eccube_html_dir').'/user_data'.$faviconPath)) { |
| 194 |
|
$file = new Filesystem(); |
| 195 |
|
$file->copy( |
| 196 |
|
$this->getParameter('eccube_html_front_dir').$faviconPath, |
| 197 |
|
$this->getParameter('eccube_html_dir').'/user_data'.$faviconPath |
| 198 |
|
); |
| 199 |
|
} |
| 200 |
|
|
| 201 |
|
return [ |
| 202 |
|
'noWritePermissions' => $noWritePermissions, |