By default two taxonomy blocks have been added to your blocks list, however you can add new blocks and configure them at ').l('admin/settings/taxonomyblocks', 'admin/settings/taxonomyblocks'), $type = 'status', $repeat = FALSE); } function taxonomyblocks_uninstall() { drupal_uninstall_schema('taxonomyblocks'); } function taxonomyblocks_schema() { $schema['tb_added_list'] = array( 'description' => t('Stores information about which blocks exist, which vocabs they use etc...'), 'fields' => array( 'tb_id' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'block_title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'custom' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'omit_tids' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), ), 'primary key' => array('tb_id'), ); $schema['tb_customized'] = array( 'description' => t('Stores customization information'), 'fields' => array( 'tb_id' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'vid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'custom_title' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'path_pattern' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'title_pattern' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'counter' => array( 'type' => 'varchar', 'length' => 255, 'not null' => FALSE, ), 'weight' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, ), 'enabled' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 1, ), ), ); return $schema; }