| 1 |
<?php |
<?php |
| 2 |
// $Id: faq.module,v 1.1.4.63.2.83 2009/10/26 15:05:43 snpower Exp $ |
// $Id: faq.module,v 1.1.4.63.2.84 2009/10/26 15:13:54 snpower Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 1423 |
} |
} |
| 1424 |
if (!isset($vocabularies)) { |
if (!isset($vocabularies)) { |
| 1425 |
$vocabularies = taxonomy_get_vocabularies('faq'); |
$vocabularies = taxonomy_get_vocabularies('faq'); |
| 1426 |
$vocab_omit = variable_get('faq_omit_vocabulary', array()); |
$vocab_omit = array_flip(variable_get('faq_omit_vocabulary', array())); |
| 1427 |
$vocabularies = array_diff_key($vocabularies, $vocab_omit); |
$vocabularies = array_diff_key($vocabularies, $vocab_omit); |
| 1428 |
} |
} |
| 1429 |
foreach ($links as $module => $link) { |
foreach ($links as $module => $link) { |