streams/Code/Widget/Dirsort.php

17 lines
294 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;
2022-10-23 21:18:44 +00:00
class Dirsort implements WidgetInterface
2021-12-02 23:02:31 +00:00
{
2022-10-24 03:39:49 +00:00
public function widget(array $arguments): string
2021-12-02 23:02:31 +00:00
{
if (intval($_REQUEST['suggest'])) {
return EMPTY_STR;
}
return Libzotdir::dir_sort_links();
}
}