Diff
882
883
883
command.php
  | 20 | 20 | | ?> |
| | 21 | 21 | | <?php |
| | 22 | 22 | | class Command extends AppModel { |
  | 23 | | - | |
| | 24 | | - | var $pathToProject = array( |
| | 25 | | - | 'Command'=>'Test', |
| | 26 | | - | 'Test'=>'Suite', |
| | 27 | | - | 'Suite'=>'Project', |
| | 28 | | - | ); |
| 29 | 23 | | |
| | 30 | 24 | | function afterSave($created){ |
| | 31 | 25 | | |
| | 32 | 26 | | clearCache(array('testlabs','projects_testlabsview/','requirements_testlabview')); |
  | 33 | | - | Debugger::log(print_r($this->data, true)); |
  | 34 | 27 | | $command = $this->find('first',array( |
| | 35 | 28 | | 'conditions' => array( |
| | 36 | 29 | | 'Command.id' => $this->getLastInsertID() |
|