How to add an Vocabulary in an install file
This is how you add an Vocabulary in an install file or in a module.
/**
* Install
*
**/
...
$vocab_count = db_query("SELECT COUNT(vid) AS vid_count FROM {vocabulary}
WHERE name = '%s'", 'A name');
$vocab_count = db_fetch_object($vocab_count);
$vocab_count = $vocab_count->vid_count;
if ($vocab_count == 0){
$vocab = array();
$vocab['name'] = 'A name';
$vocab['description'] = 'A description';
$vocab['help'] = 'Some help';
$vocab['multiple'] = 0;
$vocab['required'] = 1;
$vocab['module'] = 'zimplicit';
$vocab['no
