streams/Code/Widget/Dirsort.php
2022-10-23 20:39:49 -07:00

16 lines
294 B
PHP

<?php
namespace Code\Widget;
use Code\Lib\Libzotdir;
class Dirsort implements WidgetInterface
{
public function widget(array $arguments): string
{
if (intval($_REQUEST['suggest'])) {
return EMPTY_STR;
}
return Libzotdir::dir_sort_links();
}
}