Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
18 | public function doExecute(Request $request) |
||
19 | { |
||
20 | $vars = []; |
||
21 | if ($this->configuration->hasAction('create')) { |
||
22 | $vars['createUrl'] = $this->getActionUrl($this->options['quick_create_action_type']); |
||
23 | $vars['quickCreate'] = $this->options['quick_create']; |
||
24 | } |
||
25 | |||
26 | return $this->renderResponse($vars); |
||
27 | } |
||
28 | |||
72 |