This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/Zotlabs/Widget/Dirsort.php
2017-03-29 12:02:09 +02:00

12 lines
145 B
PHP

<?php
namespace Zotlabs\Widget;
require_once('include/dir_fns.php');
class Dirsort {
function widget($arr) {
return dir_sort_links();
}
}