blob: cbc56ae5e354f3f94975d8d5f434ecb3ff712d5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* Copyright 2016 Software Freedom Conservancy Inc.
*
* This software is licensed under the GNU Lesser General Public License
* (version 2.1 or later). See the COPYING file in this distribution.
*/
public class ImportRoll.SidebarEntry : Library.HideablePageEntry {
private ImportID id;
private string name;
public SidebarEntry(ImportID id) {
base();
this.id = id;
this.name = new DateTime.from_unix_local(id.id).format("%c");
}
public ImportID get_id() {
return id;
}
public override string get_sidebar_name() {
return this.name;
}
public override string? get_sidebar_icon() {
return Resources.ICON_LAST_IMPORT;
}
protected override Page create_page() {
return new LastImportPage.for_id(this.id);
}
}
|