This snippet produces a list of all your taxonomy terms in all vocabularies.
$rows_per_page = 25;
$query = "SELECT td.tid, td.vid, td.name, td.description, v.name as voc FROM {term_data} td LEFT JOIN {vocabulary} v USING (vid)";
$header = array(
array('data' => t('Term Name'), 'field' => 'name', 'sort' => 'asc'),
array('data' => t('Description'), 'field' => 'description'),
array('data' => t('Vocabulary'), 'field' => 'voc'),
);
$rows = array();
$query .= tablesort_sql($header);
$result = pager_query($query, $rows_per_page);
while ($term = db_fetch_object($result)) {
$rows[] = array(
l($term->name, "admin/content/taxonomy/edit/term/$term->tid"),
check_plain($term->description),
l($term->voc, "admin/content/taxonomy/edit/vocabulary/$term->vid"),
);
}
return theme('table', $header, $rows) . theme('pager', $rows_per_page);
Term Name | Description | Vocabulary![]() |
---|---|---|
Site Documentation | To simplify it a bit, the Site Documentation module picks up information from various places within the Drupal environment. Some of the information comes from internal arrays, some is derived from system calls, and some comes directly from the database tables. This information is pulled into a report that can be used to document the site. In addition, it will detect some problems that may exist in your installation, and optionally correct them.<br/> <a href="http://drupal.org/project/sitedoc">Project page</a> | <a href="http://drupal.org/node/144837" target="_blank">Documentation page</a> | <a href="/changelog/sitedoc">Change log</a> | Changelogs |
Site Notes | SiteNotes introduces a new content type, called, coincidentally, "sitenotes." It also creates a menu item in the Admin » Site building menu, where it's available only to privileged users; it's even protected by Access Control. So now all those little Post-Its™ and other scraps of paper can go right into your database where you can find them again. Create "How To" notes for your users, theme changes, CSS modifications, special code notes, and keep them safe AND available.<br/> <a href="http://drupal.org/project/sitenotes">Project page</a> | <a href="http://drupal.org/node/135710" target="_blank">Documentation</a> | <a href="/changelog/sitenotes">Change log</a> | Changelogs |
Gotcha | Gotcha intercepts the Contact form submission and checks an inserted hidden field to catch spambots. If something is there, Gotcha simply returns to the front page and ignores the message. The attempt is logged and saved in the database. If the field is empty, then the message is scanned by the <a href="http://drupal.org/project/spam">Spam module</a>, which has very good filters for catching spam. If everything looks okay, the message is passed on through to the Contact module for normal processing.<br/> <a href="http://drupal.org/project/gotcha">Project page</a> | <a href="http://drupal.org/node/173694" target="_blank">Documentation</a> | <a href="/changelog/gotcha">Change log</a> | Changelogs |
Taxonomy Delegate | <!-- http://drupal.org/project/taxonomy_delegate --> This module allows an administrator with "administer taxonomy" permission to delegate the administration of a vocabulary to a non-admin role.<br/> This module has not yet been contributed. We are looking for beta-testers.<br/> <a href="http://nanwich.info/taxonomy_delegate" target="_blank">Project page & Documentation</a> | Changelogs |
Spam Tokens | This add-on module adds another tab to the Spam administration page that allows Spam module administrators to examine and modify the tokens used by the Bayesian filters to determine the probability of content being spam.<br/> <a href="http://drupal.org/project/spam_tokens">Project page</a> | <a href="http://drupal.org/node/185113" target="_blank">Documentation</a> | <a href="/changelog/spam_tokens">Change log</a> | Changelogs |
Spam_Tune | The Spam_Tune module allows Spam module administrators to examine and modify system variables that are normally just defaulted in the Spam module. These variables are added to the 'Advanced' tab in the Spam settings. This module will probably never be contributed as it can be dangerous to alter the parameters exposed here.<br/> <a href="http://nanwich.info/spam_tune" target="_blank">Project page & Documentation</a> | Changelogs |
Get_Content_Type | The get_content_type module fills an oversight by the D5 developers. When they moved the part of CCK (sometimes called CCK-Lite) into core for creating new content types, they forgot the analog to taxonomy/term/xxx, that is node/type/xxx. This simple module provides that function.<br/> This module has not been contributed due to disparaging comments from more advanced Drupallers.<br/> <a href="http://nanwich.info/drupal_collection/get_content_type" target="_blank">Project page & Documentation</a> | Changelogs |
FAQ_Ask | This module is an add-on to the FAQ module that allows users with the 'ask question' permission to create a question which will be queued for an 'expert' to answer.<br/> <a href="http://drupal.org/project/faq_ask">Project page</a> | <a href="http://drupal.org/node/192806" target="_blank">Documentation page</a> | <a href="/changelog/faq_ask">Change log</a> | Changelogs |
Attendance Matrix | This provides a table view of who attended which meetings.<br/> <a href="http://nanwich.info/drupal_collection/attendance_matrix_module">Project page</a> | <a href="http://nanwich.info/drupal_collection/attendance_matrix_module" target="_blank">Documentation page</a> | <a href="/changelog/attendance_matrix">Change log</a> | Changelogs |
Register_Country | Are you creating a country portal or a site dedicated to a specific country?<br/> The Register Country module is designed to intercept new registrations and check if the IP address being used is registered to a country that the site administrator has chosen. In this way, you may limit sign ups to your site to specific countries.<br/> <a href="http://drupal.org/project/register_country">Project page</a> | <a href="http://drupal.org/node/160411" target="_blank">Documentation page</a> | <a href="/changelog/register_country">Change log</a> | Changelogs |
Glossary | The glossary module scans content for glossary terms (including synonyms). The glossary indicator is inserted after every found term, or the term itself is turned into an indicator, depending on the site settings. By hovering over the indicator, users will see the definition of that term displayed as a "tool tip." Clicking the indicator leads the user to that term presented within the whole glossary or directly to the detailed description of the term, if available.<br/> <a href="http://drupal.org/project/glossary">Project page</a> | <a href="http://drupal.org/node/196880" target="_blank">Documentation</a> | <a href="/changelog/glossary">Change log</a> | Changelogs |
Taxonomy Browser | Think of this as a 'build your own category view' page. A single page with each term organized nicely by vocabulary. The user selects the terms which she or he wants to see, and then this module constructs the right URL (e.g. taxonomy/view/and/3,4,5) and then displays matching nodes to the user.<br/> <a href="http://drupal.org/project/taxonomy_browser">Project page</a> | <a href="http://drupal.org/node/31602" target="_blank">Documentation page</a> | <a href="/changelog/taxonomy_browser">Change log</a> | Changelogs |
Longer Titles | Drupal 6 changed the length of the title field for nodes to 255. This module brings that change to version 5.x.<br/> <a href="http://drupal.org/project/longer_titles">Project page</a> | <a href="http://drupal.org/node/200925" target="_blank">Documentation</a> | <a href="/changelog/longer_titles">Change log</a> | Changelogs |
Node_Type_Filter | This is a simple module that allows for various lists, such as "taxonomy/term," to be filtered by content type.<br/> <a href="http://drupal.org/project/node_type_filter">Project page</a> | <a href="http://drupal.org/node/212245" target="_blank">Documentation page</a> | <a href="/changelog/node_type_filter">Change log</a> | Changelogs |
Helpers | Helpers is a collection of functions to help developers work smarter and faster.<br/> <a href="http://drupal.org/project/helpers">Project page</a> | <a href="http://drupal.org/node/213332" target="_blank">Documentation page</a> | <a href="/changelog/helpers">Change log</a> | Changelogs |
Taxonomy Image | Allow an administrator to associate image with taxonomy terms or vocabularies for display with the terms.<br/> <a href="http://drupal.org/project/taxonomy_image">Project page</a> | <a href="http://drupal.org/node/101682 target="_blank">Documentation page</a> | <a href="/changelog/taxonomy_image">Change log</a> | Changelogs |
Content | Classification | |
Utility | Classification | |
Taxonomy | Classification | |
Development | Classification | |
Administrative | Classification | |
Add-on feature | Classification | |
Spam | Classification | |
Display | Classification | |
CSS | <b>C</b>ascading <b>S</b>tyle <b>S</b>heet - a hierarchical means of specifying how to format HTML elements on the page | Glossary |
Recent comments
12 years 5 weeks ago
12 years 5 weeks ago
12 years 16 weeks ago
12 years 21 weeks ago
12 years 44 weeks ago
13 years 2 weeks ago
13 years 9 weeks ago
13 years 9 weeks ago
13 years 15 weeks ago
13 years 18 weeks ago