public static Settings::getHashSalt()
Gets a salt useful for hardening against SQL injection.
string A salt based on information in settings.php, not in the database.
\RuntimeException
public static function getHashSalt() { $hash_salt = self::$instance->get('hash_salt'); // This should never happen, as it breaks user logins and many other // services. Therefore, explicitly notify the user (developer) by throwing // an exception. if (empty($hash_salt)) { throw new \RuntimeException('Missing $settings[\'hash_salt\'] in settings.php.'); } return $hash_salt; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Site!Settings.php/function/Settings::getHashSalt/8.1.x