tra('Last-Modified File Galleries'), 'description' => tra('Display the specified number of file galleries, starting from the most recently modified.'), 'prefs' => ["feature_file_galleries"], 'params' => [], 'common_params' => ['nonums', 'rows'] ]; } /** * @param $mod_reference * @param $module_params */ function module_last_file_galleries($mod_reference, $module_params) { $smarty = TikiLib::lib('smarty'); global $prefs; $filegallib = TikiLib::lib('filegal'); $ranking = $filegallib->get_files(0, $mod_reference["rows"], 'lastModif_desc', null, $prefs['fgal_root_id'], false, true, false, false); $smarty->assign('modLastFileGalleries', $ranking["data"]); }