summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'SemanticMediaWiki/includes/src/PageInfo.php')
-rw-r--r--SemanticMediaWiki/includes/src/PageInfo.php78
1 files changed, 0 insertions, 78 deletions
diff --git a/SemanticMediaWiki/includes/src/PageInfo.php b/SemanticMediaWiki/includes/src/PageInfo.php
deleted file mode 100644
index b81438e5..00000000
--- a/SemanticMediaWiki/includes/src/PageInfo.php
+++ /dev/null
@@ -1,78 +0,0 @@
-<?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();
-
-} \ No newline at end of file