streams/Code/Widget/Dirsort.php

17 lines
247 B
PHP
Raw Normal View History

<?php
2022-02-16 04:08:28 +00:00
namespace Code\Widget;
2022-02-16 04:08:28 +00:00
use Code\Lib\Libzotdir;
2021-12-02 23:02:31 +00:00
class Dirsort
{
public function widget($arr)
{
if (intval($_REQUEST['suggest'])) {
return EMPTY_STR;
}
return Libzotdir::dir_sort_links();
}
}