Add getPluginHomepage()

This commit is contained in:
Frederic Guillot
2015-09-26 16:05:06 -04:00
parent 9ca4b43a97
commit 1fca5e721a
3 changed files with 25 additions and 5 deletions

View File

@@ -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 '';
}
}