/**
  * Get a list of available database connectors.  The list will only be populated with connectors that both
  * the class exists and the static test method returns true.  This gives us the ability to have a multitude
  * of connector classes that are self-aware as to whether or not they are able to be used on a given system.
  *
  * @return  array  An array of available database connectors.
  *
  * @since   11.1
  * @deprecated  13.1 (Platform) & 4.0 (CMS)
  */
 public static function getConnectors()
 {
     if (class_exists('JLog')) {
         JLog::add('FOFDatabase::getConnectors() is deprecated, use FOFDatabaseDriver::getConnectors() instead.', JLog::WARNING, 'deprecated');
     }
     return FOFDatabaseDriver::getConnectors();
 }