You are here

function pmticket_pmtask_change in Drupal PM (Project Management) 7

Implements hook_pmtask_change().

File

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

Code

function pmticket_pmtask_change($task_nid, $task_title, $task_stepno) {
  db_update('pmticket')
    ->fields(array(
    'task_title' => $task_title,
    'task_stepno' => $task_stepno,
  ))
    ->condition('task_nid', $task_nid)
    ->execute();
}