/**
  * Execute the action
  *
  * @access public
  * @param  array   $data   Event data dictionary
  * @return bool            True if the action was executed or false when not executed
  */
 public function doAction(array $data)
 {
     if ($data['column_id'] == $this->getParam('column_id') && $data['project_id'] != $this->getParam('project_id')) {
         $this->task->duplicateToAnotherProject($data['task_id'], $this->getParam('project_id'));
         return true;
     }
     return false;
 }
Esempio n. 2
0
 public function testDuplicateToAnotherProject()
 {
     $t = new Task($this->registry);
     $p = new Project($this->registry);
     $c = new Category($this->registry);
     // We create 2 projects
     $this->assertEquals(1, $p->create(array('name' => 'test1')));
     $this->assertEquals(2, $p->create(array('name' => 'test2')));
     $this->assertNotFalse($c->create(array('name' => 'Category #1', 'project_id' => 1)));
     $this->assertTrue($c->exists(1, 1));
     // We create a task
     $this->assertEquals(1, $t->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 2, 'owner_id' => 1, 'category_id' => 1)));
     $task = $t->getById(1);
     // We duplicate our task to the 2nd project
     $this->assertEquals(2, $t->duplicateToAnotherProject(2, $task));
     $this->assertTrue($this->registry->event->isEventTriggered(Task::EVENT_CREATE));
     // Check the values of the duplicated task
     $task = $t->getById(2);
     $this->assertNotEmpty($task);
     $this->assertEquals(1, $task['owner_id']);
     $this->assertEquals(0, $task['category_id']);
     $this->assertEquals(5, $task['column_id']);
     $this->assertEquals(1, $task['position']);
     $this->assertEquals(2, $task['project_id']);
     $this->assertEquals('test', $task['title']);
 }