summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/PageInfo.php
blob: 3cb75e347f60c51da135e20edffe582e55171e6e (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php

namespace SMW;

/**
 * Facade interface to specify access to page information
 *
 * @ingroup SMW
 *
 * @license GNU GPL v2+
 * @since 1.9
 *
 * @author mwjames
 */
interface PageInfo {

	/**
	 * Returns a modification date
	 *
	 * @since 1.9
	 *
	 * @return integer
	 */
	public function getModificationDate();

	/**
	 * Returns a creation date
	 *
	 * @since 1.9
	 *
	 * @return integer
	 */
	public function getCreationDate();

	/**
	 * Whether the page object is new or not
	 *
	 * @since 1.9
	 *
	 * @return boolean
	 */
	public function isNewPage();

	/**
	 * Returns a user object for the last editor
	 *
	 * @since 1.9
	 *
	 * @return Title
	 */
	public function getLastEditor();

	/**
	 * @since 1.9.1
	 *
	 * @return boolean
	 */
	public function isFilePage();

	/**
	 * @see File::getMediaType
	 *
	 * @since 1.9.1
	 *
	 * @return string|null
	 */
	public function getMediaType();

	/**
	 * @see File::getMimeType
	 *
	 * @since 1.9.1
	 *
	 * @return string|null
	 */
	public function getMimeType();

}