diff --git a/app/Core/Plugin/Base.php b/app/Core/Plugin/Base.php
index 1f61ab33d..a72a0cd66 100644
--- a/app/Core/Plugin/Base.php
+++ b/app/Core/Plugin/Base.php
@@ -96,4 +96,17 @@ abstract class Base extends \Core\Base
{
return '?';
}
+
+ /**
+ * Get plugin homepage
+ *
+ * This method should be overrided by your Plugin class
+ *
+ * @access public
+ * @return string
+ */
+ public function getPluginHomepage()
+ {
+ return '';
+ }
}
diff --git a/app/Template/config/plugins.php b/app/Template/config/plugins.php
index 8501bda92..fea48d586 100644
--- a/app/Template/config/plugins.php
+++ b/app/Template/config/plugins.php
@@ -15,7 +15,13 @@
- | = $this->e($plugin->getPluginName()) ?> |
+
+ getPluginHomepage()): ?>
+ = $this->e($plugin->getPluginName()) ?>
+
+ = $this->e($plugin->getPluginName()) ?>
+
+ |
= $this->e($plugin->getPluginAuthor()) ?> |
= $this->e($plugin->getPluginVersion()) ?> |
= $this->e($plugin->getPluginDescription()) ?> |
diff --git a/doc/plugins.markdown b/doc/plugins.markdown
index a17f1af43..031bf9633 100644
--- a/doc/plugins.markdown
+++ b/doc/plugins.markdown
@@ -70,10 +70,11 @@ Available methods from `Core\Plugin\Base`:
- `initialize()`: Executed when the plugin is loaded
- `getClasses()`: Return all classes that should be stored in the dependency injection container
- `on($event, $callback)`: Listen on internal events
-- `getPluginName()`: Get plugin name
-- `getPluginAuthor()`: Get plugin author
-- `getPluginVersion()`: Get plugin version
-- `getPluginDescription()`: Get plugin description
+- `getPluginName()`: Should return plugin name
+- `getPluginAuthor()`: Should return plugin author
+- `getPluginVersion()`: Should return plugin version
+- `getPluginDescription()`: Should return plugin description
+- `getPluginHomepage()`: Should return plugin Homepage (link)
Your plugin registration class also inherit from `Core\Base`, that means you can access to all classes and methods of Kanboard easily.