pgadmin4/web/pgadmin/browser/server_groups/servers/ppas.py
2019-01-02 15:54:12 +05:30

27 lines
800 B
Python

##########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
# Copyright (C) 2013 - 2019, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
##########################################################################
from flask_babelex import gettext
from pgadmin.browser.server_groups.servers.types import ServerType
class PPAS(ServerType):
UTILITY_PATH_LABEL = gettext("EDB Advanced Server Binary Path")
UTILITY_PATH_HELP = gettext(
"Path to the directory containing the EDB Advanced Server utility"
" programs (pg_dump, pg_restore etc)."
)
def instanceOf(self, ver):
return "EnterpriseDB" in ver
# Default Server Type
PPAS('ppas', gettext("EDB Advanced Server"), 2)