| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function index() |
||
| 20 | { |
||
| 21 | $response = parent::index(); |
||
| 22 | |||
| 23 | $renderer = DebugView::create(); |
||
| 24 | echo $renderer->renderHeader(); |
||
| 25 | echo $renderer->renderInfo( |
||
| 26 | _t(__CLASS__.".INFO_TITLE", "Security Confirmation"), |
||
| 27 | Director::absoluteBaseURL(), |
||
| 28 | _t(__CLASS__.".INFO_DESCRIPTION", "Confirm potentially dangerous operation") |
||
| 29 | ); |
||
| 30 | |||
| 31 | return $response; |
||
| 32 | } |
||
| 34 |