You are here

function pmticket_pmproject_change in Drupal PM (Project Management) 7

Implements hook_pmproject_change().

File

pmticket/pmticket.module, line 182
1: Hooks 2: Access functions

Code

function pmticket_pmproject_change($project_nid, $project_title) {
  db_update('pmticket')
    ->fields(array(
    'project_title' => $project_title,
  ))
    ->condition('project_nid', $project_nid)
    ->execute();
}