Show the list of selected domains on toggle/delete confirmation (#7682)

* Show the list of selected domains on toggle/delete confirmation

* Update app_languages.php

* Update modal.php

* Update domains.php
This commit is contained in:
Alex
2025-12-29 14:09:53 -07:00
committed by GitHub
parent 07d2040ddc
commit 295db3b9c8
3 changed files with 94 additions and 6 deletions

View File

@@ -18,7 +18,7 @@
The Initial Developer of the Original Code is
Mark J Crane <markjcrane@fusionpbx.com>
Copyright (C) 2010 - 2020
Copyright (C) 2010-2025
All Rights Reserved.
Contributor(s):
@@ -68,10 +68,18 @@ class modal {
$array['title'] = $text['modal_title-confirmation'];
$array['message'] = $text['confirm-toggle'];
break;
case 'toggle_items':
$array['title'] = $text['modal_title-confirmation'];
$array['message'] = $text['confirm-toggle_items'];
break;
case 'delete':
$array['title'] = $text['modal_title-confirmation'];
$array['message'] = $text['confirm-delete'];
break;
case 'delete_items':
$array['title'] = $text['modal_title-confirmation'];
$array['message'] = $text['confirm-delete_items'];
break;
case 'unassign':
$array['title'] = $text['modal_title-confirmation'];
$array['message'] = $text['confirm-unassign'];