nodeformsettings.install in Node and Comments Form Settings 6
File
nodeformsettings.install
View source
<?php
function nodeformsettings_install() {
drupal_set_message(t('Node and Comments Form Settings is now installed. Customize your content types at <a href="@contenttypes">the content types settings page</a>.', array(
'@contenttypes' => url('admin/content/types'),
)));
}
function nodeformsettings_uninstall() {
$variables = db_query("SELECT name FROM {variable} WHERE name LIKE 'nodeformsettings%%'");
while ($variable = db_fetch_object($variables)) {
variable_del($variable->name);
}
update_sql("DELETE FROM {system} WHERE name like '%nodeformsettings'");
}