summaryrefslogtreecommitdiff
path: root/platform/www/inc/ChangeLog/PageChangeLog.php
diff options
context:
space:
mode:
Diffstat (limited to 'platform/www/inc/ChangeLog/PageChangeLog.php')
-rw-r--r--platform/www/inc/ChangeLog/PageChangeLog.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/platform/www/inc/ChangeLog/PageChangeLog.php b/platform/www/inc/ChangeLog/PageChangeLog.php
new file mode 100644
index 0000000..f1b91de
--- /dev/null
+++ b/platform/www/inc/ChangeLog/PageChangeLog.php
@@ -0,0 +1,30 @@
+<?php
+
+namespace dokuwiki\ChangeLog;
+
+/**
+ * handles changelog of a wiki page
+ */
+class PageChangeLog extends ChangeLog
+{
+
+ /**
+ * Returns path to changelog
+ *
+ * @return string path to file
+ */
+ protected function getChangelogFilename()
+ {
+ return metaFN($this->id, '.changes');
+ }
+
+ /**
+ * Returns path to current page/media
+ *
+ * @return string path to file
+ */
+ protected function getFilename()
+ {
+ return wikiFN($this->id);
+ }
+}