You are here

function _support_pm_project_name in Support Ticketing System 6

1 string reference to '_support_pm_project_name'
support_pm_support_solr_info in support_pm/support_pm.module
Implementation of hook_support_solr_info().

File

support_pm/support_pm.module, line 1094
Support Project Management. @author Jeremy Andrews <jeremy@tag1consulting.com> @package Support

Code

function _support_pm_project_name($projid) {
  if (!$projid) {
    return t('None');
  }
  return check_plain(db_result(db_query('SELECT project FROM {support_project} WHERE projid = %d', $projid)));
}