summaryrefslogtreecommitdiff
path: root/includes/view/AngelTypes_view.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-12-01 10:08:03 +0100
committermsquare <msquare@notrademark.de>2016-12-13 17:59:42 +0100
commite26eb952f44e497ddaa18bbedfdae0f76297fa95 (patch)
tree31da19fd13c532a4e9ae5f1699c3fd2a37641a5c /includes/view/AngelTypes_view.php
parentdeac80e700d69a56992fec70997a9d54716bdafa (diff)
update binary lang file
Diffstat (limited to 'includes/view/AngelTypes_view.php')
-rw-r--r--includes/view/AngelTypes_view.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/view/AngelTypes_view.php b/includes/view/AngelTypes_view.php
index ce316bb7..be4838ee 100644
--- a/includes/view/AngelTypes_view.php
+++ b/includes/view/AngelTypes_view.php
@@ -56,6 +56,7 @@ function AngelType_delete_view($angeltype) {
* Is the user a supporter of this angeltype?
*/
function AngelType_edit_view($angeltype, $supporter_mode) {
+ $contact_info = AngelType_contact_info($angeltype);
return page_with_title(sprintf(_("Edit %s"), $angeltype['name']), [
buttons([
button(page_link_to('angeltypes'), _("Angeltypes"), 'back')
@@ -66,6 +67,12 @@ function AngelType_edit_view($angeltype, $supporter_mode) {
$supporter_mode ? form_info(_("Restricted"), $angeltype['restricted'] ? _("Yes") : _("No")) : form_checkbox('restricted', _("Restricted"), $angeltype['restricted']),
$supporter_mode ? form_info(_("No Self Sign Up"), $angeltype['no_self_signup'] ? _("Yes") : _("No")) : form_checkbox('no_self_signup', _("No Self Sign Up"), $angeltype['no_self_signup']),
$supporter_mode ? form_info(_("Requires driver license"), $angeltype['requires_driver_license'] ? _("Yes") : _("No")) : form_checkbox('requires_driver_license', _("Requires driver license"), $angeltype['requires_driver_license']),
+ form_radio('mode', _("No contact"), $contact_info == null, 'no_contact'),
+ form_radio('mode', _("Supporter contact"), isset($angeltype['contact_user_id']), 'user_contact'),
+ form_radio('mode', _("Free contact"), ! isset($angeltype['contact_user_id']), 'free_contact'),
+ form_text('contact_name', _("Name"), $angeltype['contact_name']),
+ form_text('contact_dect', _("DECT"), $angeltype['contact_dect']),
+ form_text('contact_email', _("E-Mail"), $angeltype['contact_email']),
form_info("", _("Restricted angel types can only be used by an angel if enabled by a supporter (double opt-in).")),
form_textarea('description', _("Description"), $angeltype['description']),
form_info("", _("Please use markdown for the description.")),