diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-11 14:54:50 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-11 14:56:46 +0100 |
commit | 1b18554aa7e0af7e13ba8c088375750ea2f53d6c (patch) | |
tree | 517edc2a24eef5669592626b492fe8ff7c3bb611 /lib/public/activity/imanager.php | |
parent | b33d8a3d60555de3e6e99a92eed3a303e55a3380 (diff) | |
download | nextcloud-server-1b18554aa7e0af7e13ba8c088375750ea2f53d6c.tar.gz nextcloud-server-1b18554aa7e0af7e13ba8c088375750ea2f53d6c.zip |
Allow extensions to specify the list of special parameters
Diffstat (limited to 'lib/public/activity/imanager.php')
-rw-r--r-- | lib/public/activity/imanager.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/public/activity/imanager.php b/lib/public/activity/imanager.php index 0a49fdf4999..a08670be4b0 100644 --- a/lib/public/activity/imanager.php +++ b/lib/public/activity/imanager.php @@ -100,6 +100,13 @@ interface IManager { function translate($app, $text, $params, $stripPath, $highlightParams, $languageCode); /** + * @param string $app + * @param string $text + * @return array|false + */ + function getSpecialParameterList($app, $text); + + /** * @param string $type * @return string */ |