Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function newMigration($migration) |
||
22 | { |
||
23 | $notification = [ |
||
24 | 'MESSAGE' => 'Migration <strong>'.$migration.'</strong> has been created and applied.', |
||
25 | 'TAG' => $this->tag, |
||
26 | 'MODULE_ID' => 'main', |
||
27 | 'ENABLE_CLOSE' => 'Y', |
||
28 | ]; |
||
29 | |||
30 | CAdminNotify::add($notification); |
||
31 | } |
||
32 | |||
43 |