| 6 database.inc | db_is_active() |
Returns a boolean depending on the availability of the database.
Related topics
4 calls to db_is_active()
2 string references to 'db_is_active'
File
- includes/
database.inc, line 194 - Wrapper for database interface code.
Code
function db_is_active() {
global $active_db;
return !empty($active_db);
}
Login or register to post comments