1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
FreedomBox app for power controls.
"""
from django.utils.translation import gettext_lazy as _
from plinth import app as app_module
from plinth import menu
from plinth.modules.backups.components import BackupRestore
from . import manifest
_description = [_('Restart or shut down the system.')]
class PowerApp(app_module.App):
"""FreedomBox app for power controls."""
app_id = 'power'
_version = 1
can_be_disabled = False
def __init__(self) -> None:
"""Create components for the app."""
super().__init__()
info = app_module.Info(app_id=self.app_id, version=self._version,
is_essential=True, name=_('Power'),
icon='fa-power-off', description=_description,
manual_page='Power', tags=manifest.tags)
self.add(info)
menu_item = menu.Menu('menu-power', info.name, info.icon, info.tags,
'power:index',
parent_url_name='system:administration',
order=50)
self.add(menu_item)
backup_restore = BackupRestore('backup-restore-power',
**manifest.backup)
self.add(backup_restore)
def setup(self, old_version):
"""Install and configure the app."""
super().setup(old_version)
self.enable()
|