HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/pm/app/Views/notifications/notification_description_for_slack.php
<?php

if ($notification->task_id && $notification->task_title) {
    echo "\n*" . app_lang("task") . ":* #$notification->task_id - " . $notification->task_title;
}

if ($notification->payment_invoice_id) {
    echo "\n" . to_currency($notification->payment_amount, $notification->client_currency_symbol) . "  -  " . get_invoice_id($notification->payment_invoice_id);
}

if ($notification->ticket_id && $notification->ticket_title) {
    echo "\n" . get_ticket_id($notification->ticket_id) . " - " . $notification->ticket_title;
}

if ($notification->leave_id && $notification->leave_start_date) {
    $leave_date = format_to_date($notification->leave_start_date, FALSE);
    if ($notification->leave_start_date != $notification->leave_end_date) {
        $leave_date = sprintf(app_lang('start_date_to_end_date_format'), format_to_date($notification->leave_start_date, FALSE), format_to_date($notification->leave_end_date, FALSE));
    }
    echo "\n*" . app_lang("date") . ":* " . $leave_date;
}

if ($notification->project_comment_id && $notification->project_comment_title && !strpos($notification->project_comment_title, "</a>")) {
    echo "\n*" . app_lang("comment") . ":* " . convert_mentions(convert_comment_link($notification->project_comment_title, false), false);
}

if ($notification->project_file_id && $notification->project_file_title) {
    echo "\n*" . app_lang("file") . ":* " . remove_file_prefix($notification->project_file_title);
}

if ($notification->project_id && $notification->project_title) {
    echo "\n*" . app_lang("project") . ":* " . $notification->project_title;
}

if ($notification->estimate_id) {
    echo "\n" . get_estimate_id($notification->estimate_id);
}

if ($notification->event_title) {
    echo "\n*" . app_lang("event") . ":* " . $notification->event_title;
}

if ($notification->announcement_title) {
    echo "\n*" . app_lang("title") . ":* " . $notification->announcement_title;
}

if ($notification->post_id && $notification->posts_title) {
    echo "\n*" . app_lang("comment") . ":* " . $notification->posts_title;
}

//show data from hook
try {
    $notification_descriptions = array();
    $notification_descriptions = app_hooks()->apply_filters('app_filter_notification_description_for_slack', $notification_descriptions, $notification);
    if ($notification_descriptions && is_array($notification_descriptions)) {
        foreach ($notification_descriptions as $notification_description) {
            echo $notification_description;
        }
    }
} catch (\Exception $ex) {
    log_message('error', '[ERROR] {exception}', ['exception' => $ex]);
}