From 43ab2c483d91dbac72b44b489fc5cf68a9f57d98 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Tue, 16 Mar 2010 15:06:07 +0100 Subject: Add INTERNAL flag to frontend plugins. If set, the plugin won't show in UI. --- ipalib/frontend.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 3727833a..48215c5d 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -201,6 +201,9 @@ class HasParam(Plugin): of ``api.env.context``, subclasses can override this with implementations that consider arbitrary ``api.env`` values. """ + # HasParam is the base class for most frontend plugins, that make it to users + # This flag should be used by UI components to make the plugin unaccessible + INTERNAL = False def _get_param_iterable(self, name, verb='takes'): """ -- cgit