streams/Code/Widget/Dirsort.php
2022-02-15 20:08:28 -08:00

16 lines
247 B
PHP

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