Fix code style issues
This commit is contained in:
parent
73a6750489
commit
f4ce2a5d82
|
@ -148,7 +148,8 @@ class ListCommand extends Command
|
|||
* icingacli monitoring list --problems
|
||||
* icingacli monitoring list --problems --service_state_type 0
|
||||
* icingacli monitoring list --host=local* --service=*disk*
|
||||
* icingacli monitoring list --columns 'host,service,service_output' --format='$host$: $service$ ($service_output$)'
|
||||
* icingacli monitoring list --columns 'host,service,service_output' \
|
||||
--format='$host$: $service$ ($service_output$)'
|
||||
*/
|
||||
public function statusAction()
|
||||
{
|
||||
|
|
|
@ -68,7 +68,8 @@ class CommentController extends Controller
|
|||
$this->view->comment = $this->comment;
|
||||
|
||||
if ($this->hasPermission('monitoring/command/comment/delete')) {
|
||||
$listUrl = Url::fromPath('monitoring/list/comments')->setQueryString('comment_type=comment|comment_type=ack');
|
||||
$listUrl = Url::fromPath('monitoring/list/comments')
|
||||
->setQueryString('comment_type=comment|comment_type=ack');
|
||||
$form = new DeleteCommentCommandForm();
|
||||
$form
|
||||
->populate(array(
|
||||
|
|
|
@ -45,8 +45,7 @@ class Controller extends IcingaWebController
|
|||
$query->limit(); // Resets any default limit and offset
|
||||
}
|
||||
|
||||
switch ($desiredFormat)
|
||||
{
|
||||
switch ($desiredFormat) {
|
||||
case 'sql':
|
||||
echo '<pre>'
|
||||
. htmlspecialchars(wordwrap($query->dump()))
|
||||
|
@ -57,7 +56,10 @@ class Controller extends IcingaWebController
|
|||
$response
|
||||
->setHeader('Content-Type', 'application/json')
|
||||
->setHeader('Cache-Control', 'no-store')
|
||||
->setHeader('Content-Disposition', 'inline; filename=' . $this->getRequest()->getActionName() . '.json')
|
||||
->setHeader(
|
||||
'Content-Disposition',
|
||||
'inline; filename=' . $this->getRequest()->getActionName() . '.json'
|
||||
)
|
||||
->appendBody(Json::encode($query->getQuery()->fetchAll()))
|
||||
->sendResponse();
|
||||
exit;
|
||||
|
@ -66,7 +68,10 @@ class Controller extends IcingaWebController
|
|||
$response
|
||||
->setHeader('Content-Type', 'text/csv')
|
||||
->setHeader('Cache-Control', 'no-store')
|
||||
->setHeader('Content-Disposition', 'attachment; filename=' . $this->getRequest()->getActionName() . '.csv')
|
||||
->setHeader(
|
||||
'Content-Disposition',
|
||||
'attachment; filename=' . $this->getRequest()->getActionName() . '.csv'
|
||||
)
|
||||
->appendBody((string) Csv::fromQuery($query))
|
||||
->sendResponse();
|
||||
exit;
|
||||
|
|
Loading…
Reference in New Issue