util/addons install wiki
In Hubzilla, addon settings such as whether an addon is enabled are managed through the system configuration. Settings related to addons are stored in the configuration database and can be manipulated using the util/config command-line utility. For instance, to enable or disable an addon, you would use commands like util/config addon enabled 1 to enable or util/config addon enabled 0 to disable it. This utility directly interacts with the Hubzilla configuration database where these settings are stored
🛟 Manage Applications
view/pdl/mod_apps.pdl
[region=aside][widget=appstore][/widget][widget=appcategories][/widget][/region][region=content]$content[/region][region=right_aside][widget=notifications][/widget][widget=newmember][/widget][/region]
[region=aside][widget=appstore][/widget][widget=appcategories][/widget][block=apphelp][/block][/region][region=content]$content[/region][region=right_aside][widget=notifications][/widget][widget=newmember][/widget][/region]
[url=https://help.hubzilla.hu/en/usermanual/apps.html]🛟 Manage Applications[/url]
i'm interested if chris wants to have a command for site-wide app install
... widget code goes here. ... The function returns a string which is the HTML content of the widget. ... $args is a named array which is passed any [var] variables from the layout editor ... For instance [widget=slugfish][var=count]3[/var][/widget] will populate $args with ... [ 'count' => 3 ]
<a href="%E2%80%98https%3A//help.hubzilla.hu/en/usermanual/apps.html%E2%80%99">🛟 Manage Applications</a>
<?phpfunction apphelp($args) {return ‘<a href="%E2%80%99https%3A//help.hubzilla.hu/en/usermanual/apps.html%E2%80%98">🛟 Manage Applications</a>’;}
<?phpnamespace Zotlabs\Widget;class Apphelp {function widget($args) {return ‘<a href="%E2%80%99https%3A//help.hubzilla.hu/en/usermanual/apps.html%E2%80%98">🛟 Manage Applications</a>’;}
<?php/** * * Name: Test Widget 1 * * Description: Display test. * * Version: 1.0 * * Author: Scott M. Stolz * * Maintainer: Scott M. Stolz * * Copyright: WisTex TechSero Ltd. Co. * * License: MIT License (Expat Verion) - https://license.neuhub.org */namespace Zotlabs\Widget;class Testwidget1 { function widget($args) { return "Hello, world!"; }}?>