mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
18 lines
282 B
PHP
18 lines
282 B
PHP
<?php
|
|
|
|
/**
|
|
* * Name: Dirsort
|
|
* * Description: Various options to provide different vies of the directory
|
|
* * Requires: directory
|
|
*/
|
|
|
|
namespace Zotlabs\Widget;
|
|
|
|
use Zotlabs\Lib\Libzotdir;
|
|
|
|
class Dirsort {
|
|
function widget($arr) {
|
|
return Libzotdir::dir_sort_links();
|
|
}
|
|
}
|