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/www/conradinvestmentgroup.com/pm/app/Views/tasks/quick_filters_dropdown.php
<?php

$quick_filters_dropdown = array(
    array("id" => "", "text" => "- " . app_lang("quick_filters") . " -"),
    array("id" => "recently_updated", "text" => app_lang("recently_updated"))
);

foreach ($task_statuses as $task_status) {
    $quick_filters_dropdown[] = array("id" => $task_status->id, "text" => $task_status->key_name ? app_lang("recently_moved_to") . " " . app_lang($task_status->key_name) : app_lang("recently_moved_to") . " " . $task_status->title);
}

$quick_filters_dropdown[] = array("id" => "recently_commented", "text" => app_lang("recently_commented"));
$quick_filters_dropdown[] = array("id" => "mentioned_me", "text" => app_lang("mentioned_me"));
$quick_filters_dropdown[] = array("id" => "recently_mentioned_me", "text" => app_lang("recently_mentioned_me"));
$quick_filters_dropdown[] = array("id" => "recurring_tasks", "text" => app_lang("recurring_tasks"));
$quick_filters_dropdown[] = array("id" => "recently_meaning", "text" => "<i data-feather='settings' class='icon-16'></i> " . app_lang("recently_meaning"));

echo json_encode($quick_filters_dropdown);
?>