yellow_category

Definition

yellow_category($cid = 0)
yellow/yellow.module, line 216

Description

View listings by category

Code

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;
  } 
  }