public function checkRootDatabasePassword() { $result = true; $cfg = $this->container->getConfig(); $username = $cfg->Value('RootDatabaseUser'); $password = $cfg->Value('RootDatabasePassword'); if ($password == '' or $username == $password) { $result = false; } return $result; }