Учусь создавать модули. inc, module, info создал, но не вижу в "главная > управление" свой модуль.
Который час сижу, не вижу в чем я мог "переписать" не так
подскажите, где я ошибся. 
annotate.info
name = 'annotate'
description = 'allows users to annotate nodes.'
core = '6.x'
package = 'voljins homework'
version = '6.x-2'
description = 'allows users to annotate nodes.'
core = '6.x'
package = 'voljins homework'
version = '6.x-2'
annotate.module
<?php
function annotate_menu() {
$items['admin/settings/annotate']=array(
'title' => t('annotate settings'),
'description' => t('change how annotations behave'),
'page callback' => 'drupal_get_form',
'page arguments' => array('annotate_admin_settings'),
'type' => MENU_NORMAL_ITEM,
'file' => 'annotate.admin.inc',
);
return $items;
}
?>annotate.admin.inc
<?phpfunction annotate_admin_settings() {
$options = node_get_types('names');
$form['annotate_node_types'] = array (
'#type' => 'checkboxes',
'#title' => t('users may annotate these content types'),
'#options' => $options,
'#default_value' => variable_get('annotate_nodetypes',array('story')),
'#description' => t('a text field will be avaible on these content types to make user-specific notes.'),
);
return $form;
}?>