function DatabaseTasks_sqlite::getFormOptions

Overrides DatabaseTasks::getFormOptions

File

includes/database/sqlite/install.inc, line 22

Class

DatabaseTasks_sqlite
@file SQLite specific install functions

Code

public function getFormOptions($database) {
    $form = parent::getFormOptions($database);
    // Remove the options that only apply to client/server style databases.
    unset($form['username'], $form['password'], $form['advanced_options']['host'], $form['advanced_options']['port']);
    // Make the text more accurate for SQLite.
    $form['database']['#title'] = st('Database file');
    $form['database']['#description'] = st('The absolute path to the file where @drupal data will be stored. This must be writable by the web server and should exist outside of the web root.', array(
        '@drupal' => drupal_install_profile_distribution_name(),
    ));
    $default_database = conf_path(FALSE, TRUE) . '/files/.ht.sqlite';
    $form['database']['#default_value'] = empty($database['database']) ? $default_database : $database['database'];
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.