This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/helper.php b/helper.php | |
index 63e8b92..fd0b26e 100644 | |
--- a/helper.php | |
+++ b/helper.php | |
@@ -125,6 +125,9 @@ class helper_plugin_pagelist extends DokuWiki_Plugin { | |
case 'list': | |
$this->style = 'list'; | |
break; | |
+ case 'simplelist': | |
+ $this->style = 'simplelist'; // Displays pagenames only, no other information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// API documentation: https://www.evernote.com/about/developer/api/ref/ | |
define("NE", "<br />"); | |
require_once("autoload.php"); | |
require_once("Thrift.php"); | |
require_once("transport/TTransport.php"); | |
require_once("transport/THttpClient.php"); |