yellow_category($cid = 0)
yellow/yellow.module, line 216
View listings by category
function yellow_category($cid = 0) {
$cid = arg(2);
// error capture
if ($cid == 0) {
drupal_set_message(t('Invalid category specified.'), 'error');
return '';
}
// success routine
else {
return 'yellow' . $bid;
}
}