Created
July 29, 2010 16:40
-
-
Save sillygwailo/498609 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Display a list of categories with zero nodes associated with them. | |
// This code once appeared inside a node. Now I use a view. Publishing it for posterity. | |
$results = db_query(db_rewrite_sql('SELECT t.* FROM {term_data} t WHERE t.vid = %d ORDER BY weight, name', 't', 'tid'), 1); | |
while ($term = db_fetch_object($results)) { | |
if (taxonomy_term_count_nodes($term->tid) == 0) { | |
$rows[] = array( | |
l($term->name, "taxonomy/term/$term->tid"), | |
l(t('edit'), "admin/content/taxonomy/edit/term/$term->tid", array(), $destination), | |
); | |
} | |
} | |
$output .= theme('table', $header, $rows, array('id' => 'taxonomy')); | |
if ($vocabulary->tags || $total_entries >= $page_increment) { | |
$output .= theme('pager', NULL, $page_increment); | |
} | |
print count($rows); | |
print $output; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment