mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Voicemails - List: Adjust column widths.
This commit is contained in:
@@ -302,17 +302,17 @@
|
|||||||
if ($show == "all" && permission_exists('voicemail_all')) {
|
if ($show == "all" && permission_exists('voicemail_all')) {
|
||||||
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param, "class='shrink'");
|
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, $param, "class='shrink'");
|
||||||
}
|
}
|
||||||
echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order);
|
echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order, null, "style='width: 1%;'");
|
||||||
echo th_order_by('voicemail_mail_to', $text['label-voicemail_mail_to'], $order_by, $order, null, "class='hide-sm-dn'");
|
echo th_order_by('voicemail_mail_to', $text['label-voicemail_mail_to'], $order_by, $order, null, "class='hide-sm-dn'");
|
||||||
echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order, null, "class='center hide-md-dn'");
|
echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order, null, "class='center hide-md-dn' style='width: 1%;'");
|
||||||
echo th_order_by('voicemail_local_after_email', $text['label-voicemail_local_after_email'], $order_by, $order, null, "class='center hide-md-dn'");
|
echo th_order_by('voicemail_local_after_email', $text['label-voicemail_local_after_email'], $order_by, $order, null, "class='center hide-md-dn' style='width: 1%;'");
|
||||||
if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) {
|
if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) {
|
||||||
echo th_order_by('voicemail_transcription_enabled', $text['label-voicemail_transcription_enabled'], $order_by, $order, null, "class='center'");
|
echo th_order_by('voicemail_transcription_enabled', $text['label-voicemail_transcription_enabled'], $order_by, $order, null, "class='center' style='width: 1%;'");
|
||||||
}
|
}
|
||||||
if (permission_exists('voicemail_message_view') || permission_exists('voicemail_greeting_view')) {
|
if (permission_exists('voicemail_message_view') || permission_exists('voicemail_greeting_view')) {
|
||||||
echo "<th>".$text['label-tools']."</th>\n";
|
echo "<th style='width: 17%;'>".$text['label-tools']."</th>\n";
|
||||||
}
|
}
|
||||||
echo th_order_by('voicemail_enabled', $text['label-voicemail_enabled'], $order_by, $order, null, "class='center'");
|
echo th_order_by('voicemail_enabled', $text['label-voicemail_enabled'], $order_by, $order, null, "class='center' style='width: 1%;'");
|
||||||
echo th_order_by('voicemail_description', $text['label-voicemail_description'], $order_by, $order, null, "class='hide-sm-dn'");
|
echo th_order_by('voicemail_description', $text['label-voicemail_description'], $order_by, $order, null, "class='hide-sm-dn'");
|
||||||
if (permission_exists('voicemail_edit') && $list_row_edit_button) {
|
if (permission_exists('voicemail_edit') && $list_row_edit_button) {
|
||||||
echo " <td class='action-button'> </td>\n";
|
echo " <td class='action-button'> </td>\n";
|
||||||
@@ -354,7 +354,7 @@
|
|||||||
}
|
}
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
|
|
||||||
echo " <td class='hide-sm-dn'>".escape($row['voicemail_mail_to'])." </td>\n";
|
echo " <td class='hide-sm-dn overflow' style='max-width: 175px;'>".escape($row['voicemail_mail_to'])." </td>\n";
|
||||||
echo " <td class='center hide-md-dn'>".($row['voicemail_file'] == 'attach' ? $text['label-true'] : $text['label-false'])."</td>\n";
|
echo " <td class='center hide-md-dn'>".($row['voicemail_file'] == 'attach' ? $text['label-true'] : $text['label-false'])."</td>\n";
|
||||||
echo " <td class='center hide-md-dn'>".ucwords(escape($row['voicemail_local_after_email']))." </td>\n";
|
echo " <td class='center hide-md-dn'>".ucwords(escape($row['voicemail_local_after_email']))." </td>\n";
|
||||||
if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) {
|
if (permission_exists('voicemail_transcription_enabled') && $settings->get('transcribe', 'enabled', false) === true) {
|
||||||
|
|||||||
Reference in New Issue
Block a user