the content types settings page.', array( '@contenttypes' => url('admin/content/types') ) )); } /** * Implementation of hook_uninstall(). * Remove the variables this module created. */ function nodeformsettings_uninstall() { // remove all variables we created $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'"); }