Il modo migliore è farlo all'interno di hook_enable () ; al momento del richiamo dell'hook, il modulo è già installato e lo schema del suo database è disponibile per Drupal e per drupal_write_record()
. Dato che l'hook viene invocato tutte le volte che un modulo è abilitato, e non solo quando il modulo è installato, l'implementazione dell'hook dovrebbe verificare se non ha già aggiunto quelle righe del database (ad esempio, dovrebbe usare una variabile Drupal contenente un valore booleano) .
Come esempio di modulo che utilizza hook_enable()
per uno scopo simile, puoi controllare forum_enable () o php_enable () (che aggiunge il formato di input "Codice PHP").
function php_enable() {
$format_exists = (bool) db_query_range('SELECT 1 FROM {filter_format} WHERE name = :name', 0, 1, array(':name' => 'PHP code'))->fetchField();
// Add a PHP code text format, if it does not exist. Do this only for the
// first install (or if the format has been manually deleted) as there is no
// reliable method to identify the format in an uninstall hook or in
// subsequent clean installs.
if (!$format_exists) {
$php_format = array(
'format' => 'php_code',
'name' => 'PHP code',
// 'Plain text' format is installed with a weight of 10 by default. Use a
// higher weight here to ensure that this format will not be the default
// format for anyone.
'weight' => 11,
'filters' => array(
// Enable the PHP evaluator filter.
'php_code' => array(
'weight' => 0,
'status' => 1,
),
),
);
$php_format = (object) $php_format;
filter_format_save($php_format);
drupal_set_message(t('A <a href="@php-code">PHP code</a> text format has been created.', array('@php-code' => url('admin/config/content/formats/' . $php_format->format))));
}
}
Come mostrato da queste implementazioni di hook, potrebbe essere necessario eseguire il codice ogni volta che viene eseguito l'hook; potrebbe anche essere che il codice debba essere eseguito una sola volta, poiché nel caso in cui i valori predefiniti aggiunti al database non possano essere modificati dall'utente, che non ha un'interfaccia utente per alterare / eliminare tali valori.