mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
43 lines
951 B
Python
43 lines
951 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
FreedomBox app for power controls.
|
|
"""
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth import app as app_module
|
|
|
|
from .manifest import backup # noqa, pylint: disable=unused-import
|
|
|
|
version = 1
|
|
|
|
is_essential = True
|
|
|
|
_description = [_('Restart or shut down the system.')]
|
|
|
|
app = None
|
|
|
|
|
|
class PowerApp(app_module.App):
|
|
"""FreedomBox app for power controls."""
|
|
|
|
app_id = 'power'
|
|
|
|
def __init__(self):
|
|
"""Create components for the app."""
|
|
super().__init__()
|
|
|
|
info = app_module.Info(app_id=self.app_id, version=version,
|
|
is_essential=is_essential, name=_('Power'),
|
|
description=_description, manual_page='Power')
|
|
self.add(info)
|
|
|
|
# not in menu, see issue #834
|
|
|
|
|
|
def init():
|
|
"""Initialize the power module."""
|
|
global app
|
|
app = PowerApp()
|
|
app.set_enabled(True)
|