summaryrefslogtreecommitdiff
path: root/includes/view
diff options
context:
space:
mode:
authorMichael Weimann <mail@michael-weimann.eu>2019-12-14 10:35:42 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-12-19 19:33:52 +0100
commitea034ecec665aff04fd74c81e11c34000a9b9492 (patch)
tree9484cab331663e5eab9de0559cf77bdcf0145b22 /includes/view
parent3f135497711ca316a6f02d1f19aa2211ace9691d (diff)
Add the container class to some views
Diffstat (limited to 'includes/view')
-rw-r--r--includes/view/AngelTypes_view.php8
-rw-r--r--includes/view/Questions_view.php2
-rw-r--r--includes/view/Rooms_view.php2
-rw-r--r--includes/view/ShiftTypes_view.php8
-rw-r--r--includes/view/UserAngelTypes_view.php2
5 files changed, 11 insertions, 11 deletions
diff --git a/includes/view/AngelTypes_view.php b/includes/view/AngelTypes_view.php
index 9f9bd736..0eb8ef86 100644
--- a/includes/view/AngelTypes_view.php
+++ b/includes/view/AngelTypes_view.php
@@ -64,7 +64,7 @@ function AngelType_delete_view($angeltype)
form_submit('delete', glyph('ok') . __('delete'), 'btn-danger', false),
])
]),
- ]);
+ ], true);
}
/**
@@ -360,7 +360,7 @@ function AngelType_view(
$shiftCalendarRenderer
)
], $tab)
- ]);
+ ], true);
}
/**
@@ -507,7 +507,7 @@ function AngelTypes_list_view($angeltypes, $admin_angeltypes)
'membership' => __('Membership'),
'actions' => ''
], $angeltypes)
- ]);
+ ], true);
}
/**
@@ -595,5 +595,5 @@ function AngelTypes_about_view($angeltypes, $user_logged_in)
$content[] = AngelTypes_about_view_angeltype($angeltype);
}
- return page_with_title(__('Teams/Job description'), $content);
+ return page_with_title(__('Teams/Job description'), $content, true);
}
diff --git a/includes/view/Questions_view.php b/includes/view/Questions_view.php
index a4c3a452..61f9f312 100644
--- a/includes/view/Questions_view.php
+++ b/includes/view/Questions_view.php
@@ -61,5 +61,5 @@ function Questions_view(array $open_questions, array $answered_questions, $ask_a
form_textarea('question', __('Your Question:'), ''),
form_submit('submit', __('Save'))
], $ask_action)
- ]);
+ ], true);
}
diff --git a/includes/view/Rooms_view.php b/includes/view/Rooms_view.php
index 4ea78e86..51e651ee 100644
--- a/includes/view/Rooms_view.php
+++ b/includes/view/Rooms_view.php
@@ -54,7 +54,7 @@ function Room_view($room, ShiftsFilterRenderer $shiftsFilterRenderer, ShiftCalen
$assignNotice,
$description,
tabs($tabs, $selected_tab)
- ]);
+ ], true);
}
/**
diff --git a/includes/view/ShiftTypes_view.php b/includes/view/ShiftTypes_view.php
index 634f9760..3e10be29 100644
--- a/includes/view/ShiftTypes_view.php
+++ b/includes/view/ShiftTypes_view.php
@@ -31,7 +31,7 @@ function ShiftType_delete_view($shifttype)
),
]),
]),
- ]);
+ ], true);
}
/**
@@ -63,7 +63,7 @@ function ShiftType_edit_view($name, $angeltype_id, $angeltypes, $description, $s
form_info('', __('Please use markdown for the description.')),
form_submit('submit', __('Save'))
])
- ]);
+ ], true);
}
/**
@@ -99,7 +99,7 @@ function ShiftType_view($shifttype, $angeltype)
]),
heading(__('Description'), 2),
$parsedown->parse($shifttype['description'])
- ]);
+ ], true);
}
/**
@@ -140,5 +140,5 @@ function ShiftTypes_list_view($shifttypes)
'name' => __('Name'),
'actions' => ''
], $shifttypes)
- ]);
+ ], true);
}
diff --git a/includes/view/UserAngelTypes_view.php b/includes/view/UserAngelTypes_view.php
index d4d8aab6..8cba2060 100644
--- a/includes/view/UserAngelTypes_view.php
+++ b/includes/view/UserAngelTypes_view.php
@@ -123,7 +123,7 @@ function UserAngelType_delete_view($user_angeltype, $user, $angeltype)
form_submit('delete', glyph('ok') . __('yes'), 'btn-primary', false),
]),
], page_link_to('user_angeltypes', ['action' => 'delete', 'user_angeltype_id' => $user_angeltype['id']])),
- ]);
+ ], true);
}
/**