Merge pull request #3475 from matthenning/master
Make all grapher hooks available in the view
This commit is contained in:
commit
7c22dd0325
|
@ -1,4 +1,6 @@
|
|||
<?php if (isset($grapher)) {
|
||||
echo $grapher->getPreviewHtml($object);
|
||||
<?php if (isset($graphers)) {
|
||||
foreach ($graphers as $grapher) {
|
||||
echo $grapher->getPreviewHtml($object);
|
||||
}
|
||||
} ?>
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ abstract class MonitoredObjectController extends Controller
|
|||
$this->view->tickets = Hook::first('ticket');
|
||||
}
|
||||
if (Hook::has('grapher')) {
|
||||
$this->view->grapher = Hook::first('grapher');
|
||||
$this->view->graphers = Hook::all('grapher');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue