Index: filetree.info
===================================================================
--- filetree.info	(revision 333)
+++ filetree.info	(working copy)
@@ -2,7 +2,7 @@
 description = Renders an interactive list from a folder of files.
 package = Input filters
 core = 7.x
-configure = admin/config/content/formats
+configure = admin/config/media/filetree
 scripts[] = filetree.js
 stylesheets[all][] = filetree.css
 ; Information added by drupal.org packaging script on 2011-07-20
Index: filetree.module
===================================================================
--- filetree.module	(revision 333)
+++ filetree.module	(working copy)
@@ -1,6 +1,43 @@
 <?php
 
 /**
+ * Implements of hook_menu().
+ */
+function filetree_menu() {
+  $items = array();
+
+  $items['admin/config/media/filetree'] = array(
+    'title' => 'File tree',
+    'description' => 'Configure the filetree module.',
+//    'access callback' => 'user_access',
+    'access arguments' => array('administer site configuration'),
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('filetree_admin_settings'),
+    'type' => MENU_NORMAL_ITEM,
+  );
+
+  return $items;
+}
+
+/**
+ * Implements hook_help().
+ */
+function filetree_help($path, $arg) {
+  switch ($path) {
+    case 'admin/config/media/filetree':
+      $help = t("The filetree filter can be turned on for one or more Text formats on the ") . l(t("Text formats settings page"), "admin/config/content/formats") . ".";
+      return $help;
+  }
+}
+
+function filetree_admin_settings($form, &$form_state) {
+
+  // Form elements here...
+
+  return system_settings_form($form);
+}
+
+/**
  * Implements hook_theme().
  */
 function filetree_theme() {
