public function DatabaseTasks::installable
Check whether Drupal is installable on the database.
Archivo
- drupal-7.x/
includes/ install.inc, line 374 - API functions for installing modules and themes.
Class
- DatabaseTasks
- Database installer structure.
Código
public function installable() {
return $this->hasPdoDriver() && empty($this->error);
}