You are here

function casetracker_project_create in Case Tracker 7.2

Create a casetracker_project object.

1 call to casetracker_project_create()
CaseTrackerProjectUIController::hook_menu in includes/controller/ui/CaseTrackerProjectUIController.inc
Overrides hook_menu() defaults. Main reason for doing this is that parent class hook_menu() is optimized for entity type administration.
1 string reference to 'casetracker_project_create'
casetracker_entity_info in ./casetracker.module

File

./casetracker_project.inc, line 111
This file concentrates all general functionality related to Projects in Case Tracker, leaving to the other files in /admin the stuff related to CRUD and structural configuration

Code

function casetracker_project_create($values = array()) {
  return entity_get_controller('casetracker_project')
    ->create($values);
}