Once I have installed and configured this module, I found a trouble to enable its block.

I think that the problem is in the index of the array blocks, after I changed it, I resolved this issue, below the changes that I've made:

function tagadelic_block_info() {
  $blocks = array();
  foreach (taxonomy_get_vocabularies() as $voc) {
    $blocks['tag_'.$voc->vid] = array();
    $blocks['tag_'.$voc->vid]['info'] = variable_get('tagadelic_block_title_' . $voc->vid, t('Tags in @voc', array('@voc' => $voc->name)));
    $blocks['tag_'.$voc->vid]['cache'] = DRUPAL_CACHE_GLOBAL;
  }
  return $blocks;
}

Comments

Bèr Kessels’s picture

When you say "trouble", you mean you got an error? If so, please post it here. If not, could you explain your "trouble"?

nidble’s picture

Yes of course, without the changes above, the block doesn't appear on block list.

Bèr Kessels’s picture

Status: Active » Closed (won't fix)

Please open a pull request on github if you still want this feature.

nidble’s picture

Hi Kessels,
Is it required to commit my changes or they are not necessary because you have already made it?