| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function displayAlertsAction($isAddStyles = true, $isAddJsAlertClose = true) |
||
| 10 | { |
||
| 11 | $options = [ |
||
| 12 | 'alert_publisher' => $this->get('sludio_helper.alert.publisher'), |
||
| 13 | 'alert_use_styles' => $isAddStyles, |
||
| 14 | 'alert_use_scripts' => $isAddJsAlertClose, |
||
| 15 | ]; |
||
| 16 | |||
| 17 | return $this->render('SludioHelperBundle:Script:layout.html.twig', $options); |
||
| 18 | } |
||
| 20 |