ttrss/classes/dlg.php

79 lines
2.0 KiB
PHP
Raw Normal View History

2011-12-12 20:20:53 +00:00
<?php
2012-08-17 13:03:39 +00:00
class Dlg extends Handler_Protected {
2011-12-12 20:20:53 +00:00
private $param;
2015-06-07 15:41:18 +00:00
private $params;
2011-12-13 10:15:42 +00:00
2015-06-07 15:41:18 +00:00
function before($method) {
if (parent::before($method)) {
2013-04-01 06:47:41 +00:00
header("Content-Type: text/html"); # required for iframe
2021-02-08 06:00:29 +00:00
$this->param = ($_REQUEST["param"] ?? false);
2011-12-12 20:20:53 +00:00
return true;
}
return false;
}
2011-12-13 10:15:42 +00:00
2011-12-12 20:20:53 +00:00
function printTagCloud() {
print "<div class='panel text-center'>";
2011-12-12 20:20:53 +00:00
// from here: http://www.roscripts.com/Create_tag_cloud-71.html
2017-12-01 15:16:58 +00:00
$sth = $this->pdo->prepare("SELECT tag_name, COUNT(post_int_id) AS count
FROM ttrss_tags WHERE owner_uid = ?
GROUP BY tag_name ORDER BY count DESC LIMIT 50");
$sth->execute([$_SESSION['uid']]);
$tags = array();
2017-12-01 15:16:58 +00:00
while ($line = $sth->fetch()) {
$tags[$line["tag_name"]] = $line["count"];
}
if(count($tags) == 0 ){ return; }
ksort($tags);
$max_size = 32; // max font size in pixels
$min_size = 11; // min font size in pixels
// largest and smallest array values
$max_qty = max(array_values($tags));
$min_qty = min(array_values($tags));
// find the range of values
$spread = $max_qty - $min_qty;
if ($spread == 0) { // we don't want to divide by zero
$spread = 1;
}
// set the font-size increment
$step = ($max_size - $min_size) / ($spread);
// loop through the tag array
foreach ($tags as $key => $value) {
// calculate font-size
// find the $value in excess of $min_qty
// multiply by the font-size increment ($size)
// and add the $min_size set above
$size = round($min_size + (($value - $min_qty) * $step));
$key_escaped = str_replace("'", "\\'", (string)$key);
echo "<a href=\"#\" onclick=\"Feeds.open({feed:'$key_escaped'}) \" style=\"font-size: " .
$size . "px\" title=\"$value articles tagged with " .
$key . '">' . $key . '</a> ';
}
2011-12-12 20:20:53 +00:00
print "</div>";
print "<footer class='text-center'>";
print "<button dojoType='dijit.form.Button'
onclick=\"return CommonDialogs.closeInfoBox()\">".
2011-12-12 20:20:53 +00:00
__('Close this window')."</button>";
print "</footer>";
2011-12-12 20:20:53 +00:00
}
2019-02-20 11:37:59 +00:00
}