|
function this.GetPluginName()
return "Recent Documents";
end
function this.GetPluginIcon()
icon = this:icon = this:GetIconIndex("%RECENT%");
return icon;
end
function this.GetSize()
local size = 0;
count = this:GetFolderSize("%RECENT%", "", true);
return size, count;
end
function this.Clear()
this:DeleteFolderContent("%RECENT%", "", true);
end
|