commentformsettings.install in Node and Comments Form Settings 6.3
File
commentformsettings/commentformsettings.install
View source
<?php
function commentformsettings_install() {
drupal_set_message(t('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 commentformsettings_uninstall() {
$variables = db_query("SELECT name FROM {variable} WHERE name LIKE 'commentformsettings%%'");
while ($variable = db_fetch_object($variables)) {
variable_del($variable->name);
}
update_sql("DELETE FROM {system} WHERE name like '%commentformsettings'");
}