Drupal 7 でモジュールなしでシングル サインオンを設定するにはどうすればよいですか? Drupal 6 で実行していましたが、settings.php ファイルでいくつかの変更があり、これを理解するのに苦労しています。
You can also use a reference to a schema/database as a prefix. This maybe
* useful if your Drupal installation exists in a schema that is not the default
* or you want to access several databases from the same code base at the same
* time.
* Example:
* @code
* 'prefix' => array(
* 'default' => 'main.',
* 'users' => 'shared.',
* 'sessions' => 'shared.',
* 'role' => 'shared.',
* 'authmap' => 'shared.',
* );
* @endcode
* NOTE: MySQL and SQLite's definition of a schema is a database.
これは、これを設定するために必要なコードですが、settings.php ファイルのどこに配置すればよいかわかりません。何か案は?