aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/config/installer/container/services_install_navigation.yml2
-rw-r--r--phpBB/phpbb/install/helper/navigation/install_navigation.php25
-rw-r--r--phpBB/phpbb/install/helper/navigation/main_navigation.php3
3 files changed, 30 insertions, 0 deletions
diff --git a/phpBB/config/installer/container/services_install_navigation.yml b/phpBB/config/installer/container/services_install_navigation.yml
index 88c495825b..53e20e89cc 100644
--- a/phpBB/config/installer/container/services_install_navigation.yml
+++ b/phpBB/config/installer/container/services_install_navigation.yml
@@ -19,6 +19,8 @@ services:
installer.navigation.install_navigation:
class: phpbb\install\helper\navigation\install_navigation
+ arguments:
+ - @installer.helper.install_helper
scope: prototype
tags:
- { name: installer.navigation }
diff --git a/phpBB/phpbb/install/helper/navigation/install_navigation.php b/phpBB/phpbb/install/helper/navigation/install_navigation.php
index 1389f11fa0..f690f8de76 100644
--- a/phpBB/phpbb/install/helper/navigation/install_navigation.php
+++ b/phpBB/phpbb/install/helper/navigation/install_navigation.php
@@ -13,10 +13,35 @@
namespace phpbb\install\helper\navigation;
+use phpbb\install\helper\install_helper;
+
class install_navigation implements navigation_interface
{
+ /**
+ * @var install_helper
+ */
+ private $install_helper;
+
+ /**
+ * Constructor
+ *
+ * @param install_helper $install_helper
+ */
+ public function __construct(install_helper $install_helper)
+ {
+ $this->install_helper = $install_helper;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
public function get()
{
+ if ($this->install_helper->is_phpbb_installed())
+ {
+ return array();
+ }
+
return array(
'install' => array(
'label' => 'INSTALL',
diff --git a/phpBB/phpbb/install/helper/navigation/main_navigation.php b/phpBB/phpbb/install/helper/navigation/main_navigation.php
index ad67840424..214bb04963 100644
--- a/phpBB/phpbb/install/helper/navigation/main_navigation.php
+++ b/phpBB/phpbb/install/helper/navigation/main_navigation.php
@@ -15,6 +15,9 @@ namespace phpbb\install\helper\navigation;
class main_navigation implements navigation_interface
{
+ /**
+ * {@inheritdoc}
+ */
public function get()
{
return array(