Like other posts here I'd like to see some id field Views handlers, but I'm not writing them and guess the developers feels the same?

In the meantime, here are some finer grained Views. I've written them so they don't interfere with what's there already. I stuck them in casetracker_basic for the same reason. You can always transfer them across if you like the way it seems to be heading. Stick this somewhere in casetracker_basic.module,

/**
* Implementation of hook_views_api().
*/
function casetracker_basic_views_api() {
return array(
'api' => 2,
//'path' => drupal_get_path('module', 'casetracker_basic'),
'path' => drupal_get_path('module', 'casetracker') . '/casetracker_basic_views',
);
}

Then unmunge and extract the attached file into your casetracker folder (if you trust me and all that).

You get,

casetracker_my_issues
casetracker/cases/my
casetracker/cases/my/open

casetracker_project_bugs
casetracker/project/%/bugs
casetracker/project/%/bugs/open

casetracker_project_issues
casetracker/project/%
casetracker/project/%/open

casetracker_project_search
casetracker/project/%/search
casetracker/project/%/search/open

Won't be to everyone's taste, as I renamed 'cases' to 'issues', and there may be mistakes (I'm no cataloger).

Rob.

CommentFileSizeAuthor
casetracker_basic_views.tar_.gz3.43 KBrcrowther
Support from Acquia helps fund testing for Drupal Acquia logo