You are here

function support_client_build_modes in Support Ticketing System 7

Implements ENTITY_TYPE_build_modes().

File

./support.module, line 89
support.module

Code

function support_client_build_modes($obj_type) {
  $modes = array();
  if ($obj_type == 'support_client') {
    $modes = array(
      'normal' => t('Normal'),
    );
  }
  return $modes;
}