function create_session_list_object($ids, $listname, $sort = "") { $l = SessionList::create($this->listId($sort), $ids, $this->description($listname), $this->url_site_relative_raw()); if ($this->matchPreg) { $l->matchPreg = $this->matchPreg; } return $l; }
function table_html($listname, $url, $listtitle = "", $foldsession = null) { global $Conf, $contactListFields; // PC tags $listquery = $listname; $queryOptions = array(); if (str_starts_with($listname, "#")) { $queryOptions["where"] = "(u.contactTags like " . Dbl::utf8ci("'% " . sqlq_for_like(substr($listname, 1)) . "#%'") . ")"; $listquery = "pc"; } // get paper list if (!($baseFieldId = $this->listFields($listquery))) { Conf::msg_error("There is no people list query named “" . htmlspecialchars($listquery) . "”."); return null; } $this->limit = array_shift($baseFieldId); // get field array $fieldDef = array(); $acceptable_fields = array(); $this->any = (object) array("sel" => false); $ncol = 0; foreach ($baseFieldId as $fid) { if ($this->selector($fid, $queryOptions) === false) { continue; } if (!($fieldDef[$fid] = @$contactListFields[$fid])) { $fieldDef[$fid] = $contactListFields[self::FIELD_SCORE]; } $acceptable_fields[$fid] = true; if ($fieldDef[$fid][1] == 1) { $ncol++; } } // run query $rows = $this->_rows($queryOptions); if (!$rows || count($rows) == 0) { return "No matching people"; } // list number if ($this->listNumber === true) { $this->listNumber = SessionList::allocate("u/" . $this->limit); $this->contactLinkArgs .= "&ls=" . $this->listNumber; } // sort rows if (!@$acceptable_fields[$this->sortField]) { $this->sortField = null; } $srows = $this->_sort($rows); // count non-callout columns $firstcallout = $lastcallout = null; $n = 0; foreach ($fieldDef as $fieldId => $fdef) { if ($fdef[1] == 1) { if ($firstcallout === null && $fieldId < self::FIELD_SELECTOR) { $firstcallout = $n; } if ($fieldId < self::FIELD_SCORE) { $lastcallout = $n + 1; } ++$n; } } $firstcallout = $firstcallout ? $firstcallout : 0; $lastcallout = ($lastcallout ? $lastcallout : $ncol) - $firstcallout; // collect row data $this->count = 0; $show_colors = $this->contact->isPC; $anyData = array(); $body = ''; $extrainfo = $hascolors = false; $ids = array(); foreach ($srows as $row) { if (($this->limit == "resub" || $this->limit == "extsub") && $row->numReviewsSubmitted == 0) { continue; } $trclass = "k" . $this->count % 2; if ($show_colors && ($m = $row->viewable_color_classes($this->contact))) { if (TagInfo::classes_have_colors($m)) { $trclass = $m; $hascolors = true; } else { $trclass .= " {$m}"; } } if ($row->disabled && $this->contact->isPC) { $trclass .= " graytext"; } $this->count++; $ids[] = (int) $row->contactId; // First create the expanded callout row $tt = ""; foreach ($fieldDef as $fieldId => $fdef) { if ($fdef[1] >= 2 && ($d = $this->content($fieldId, $row)) !== "") { $tt .= "<div"; //$t .= " <tr class=\"pl_$fdef[0] pl_callout $trclass"; if ($fdef[1] >= 3) { $tt .= " class=\"fx" . ($fdef[1] - 2) . "\""; } $tt .= '><em class="plx">' . $this->header($fieldId, -1, $row) . ":</em> " . $d . "</div>"; } } if ($tt !== "") { $x = " <tr class=\"plx {$trclass}\">"; if ($firstcallout > 0) { $x .= "<td colspan=\"{$firstcallout}\"></td>"; } $tt = $x . "<td class=\"plx\" colspan=\"" . ($lastcallout - $firstcallout) . "\">" . $tt . "</td></tr>\n"; } // Now the normal row $t = " <tr class=\"pl {$trclass}\">\n"; $n = 0; foreach ($fieldDef as $fieldId => $fdef) { if ($fdef[1] == 1) { $c = $this->content($fieldId, $row); $t .= " <td class=\"pl pl_{$fdef['0']}\""; if ($n >= $lastcallout && $tt != "") { $t .= " rowspan=\"2\""; } $t .= ">" . $c . "</td>\n"; if ($c != "") { $anyData[$fieldId] = 1; } ++$n; } } $t .= " </tr>\n"; $body .= $t . $tt; } $foldclasses = array(); foreach (self::$folds as $k => $fold) { if (@$this->have_folds[$fold] !== null) { $this->have_folds[$fold] = strpos(displayOptionsSet("uldisplay"), " {$fold} ") !== false; $foldclasses[] = "fold" . ($k + 1) . ($this->have_folds[$fold] ? "o" : "c"); } } $x = "<table id=\"foldul\" class=\"pltable pltable_full plt_" . htmlspecialchars($listquery); if ($foldclasses) { $x .= " " . join(" ", $foldclasses); } if ($foldclasses && $foldsession) { $x .= "\" data-fold-session=\"{$foldsession}"; } $x .= "\">\n"; if ($this->showHeader) { $x .= " <thead class=\"pltable\">\n <tr class=\"pl_headrow\">\n"; $ord = 0; if ($this->sortable && $url) { $sortUrl = htmlspecialchars($url) . (strpos($url, "?") ? "&" : "?") . "sort="; $q = '<a class="pl_sort" rel="nofollow" href="' . $sortUrl; foreach ($fieldDef as $fieldId => $fdef) { if ($fdef[1] != 1) { continue; } else { if (!isset($anyData[$fieldId])) { $x .= " <th class=\"pl pl_{$fdef['0']}\"></th>\n"; continue; } } $x .= " <th class=\"pl pl_{$fdef['0']}\">"; $ftext = $this->header($fieldId, $ord++); if ($this->sortField == null && $fieldId == 1) { $this->sortField = $fieldId; } if ($fieldId == $this->sortField) { $x .= '<a class="pl_sort_def' . ($this->reverseSort ? "_rev" : "") . '" rel="nofollow" href="' . $sortUrl . $fieldId . ($this->reverseSort ? "N" : "R") . '">' . $ftext . "</a>"; } else { if ($fdef[2]) { $x .= $q . $fieldId . "\">" . $ftext . "</a>"; } else { $x .= $ftext; } } $x .= "</th>\n"; } } else { foreach ($fieldDef as $fieldId => $fdef) { if ($fdef[1] == 1 && isset($anyData[$fieldId])) { $x .= " <th class=\"pl pl_{$fdef['0']}\">" . $this->header($fieldId, $ord++) . "</th>\n"; } else { if ($fdef[1] == 1) { $x .= " <th class=\"pl pl_{$fdef['0']}\"></th>\n"; } } } } $x .= " </tr></thead>\n"; } reset($fieldDef); if (key($fieldDef) == self::FIELD_SELECTOR) { $x .= $this->footer($ncol, $hascolors); } $x .= "<tbody class=\"pltable" . ($hascolors ? " pltable_colored" : "") . "\">" . $body . "</tbody></table>"; if ($this->listNumber) { $l = SessionList::create("u/" . $listname, $ids, $listtitle ? $listtitle : "Users", hoturl_site_relative_raw("users", ["t" => $listname])); SessionList::change($this->listNumber, $l); } return $x; }