2020-08-05 08:25:28 +02:00
|
|
|
def can_build(env, platform):
|
2021-02-18 14:45:28 +01:00
|
|
|
return True
|
2020-08-05 08:25:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def is_enabled():
|
|
|
|
# The module is disabled by default. Use module_text_server_fb_enabled=yes to enable it.
|
|
|
|
return False
|
2021-08-27 23:19:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"TextServerFallback",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|