4 * Argument handler to accept a vocabulary id.
6 class views_handler_argument_vocabulary_vid
extends views_handler_argument
{
8 * Override the behavior of title(). Get the name of the user.
11 $title = db_result(db_query("SELECT v.name FROM {vocabulary} v WHERE v.vid = %d", $this->argument
));
14 return t('No vocabulary');
17 return check_plain($title);