You are here

function pmnote_pmtask_change in Drupal PM (Project Management) 7

Implements hook_pmtask_change().

File

pmnote/pmnote.module, line 162
Functions for the PM Note module.

Code

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