วิธีที่ดีกว่าคือทำภายในhook_enable () ; ในเวลาเบ็ดถูกเรียกโมดูลมีการติดตั้งแล้วและคีมาของฐานข้อมูลที่สามารถใช้ได้กับ Drupal drupal_write_record()
และ เนื่องจาก hook ถูกเรียกใช้ทุกครั้งที่เปิดใช้งานโมดูลและไม่เพียง แต่เมื่อติดตั้งโมดูลแล้วการใช้ hook ควรตรวจสอบว่าไม่ได้เพิ่มแถวฐานข้อมูลเหล่านั้นไปแล้ว (เช่นควรใช้ตัวแปร Drupal ที่มีค่าบูลีน) .
ตัวอย่างของโมดูลที่ใช้hook_enable()
เพื่อวัตถุประสงค์ที่คล้ายกันคุณสามารถตรวจสอบforum_enable ()หรือphp_enable () (ซึ่งเพิ่มรูปแบบการป้อน "PHP code")
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))));
}
}
ดังที่แสดงจากการใช้งาน hook เหล่านั้นจำเป็นต้องมีการเรียกใช้โค้ดทุกครั้งที่มีการเรียกใช้ hook อาจเป็นรหัสที่ต้องใช้งานเพียงครั้งเดียวในกรณีที่ค่าเริ่มต้นที่เพิ่มลงในฐานข้อมูลไม่สามารถเปลี่ยนแปลงได้จากผู้ใช้ที่ไม่มีส่วนต่อประสานผู้ใช้ในการแก้ไข / ลบค่าเหล่านั้น