| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function loadCollection($data = null) |
||
| 21 | { |
||
| 22 | // Fixes delete buttons in GridView. |
||
| 23 | // When button in being pressed, the system submits POST request which contains |
||
| 24 | // POST model ClassSearch and GET attribute with ID |
||
| 25 | $data = Yii::$app->request->get() ? [Yii::$app->request->get()] : null; |
||
| 26 | parent::loadCollection($data); |
||
| 27 | } |
||
| 28 | |||
| 43 |