]> git.mxchange.org Git - friendica-addons.git/blobdiff - communityhome/communityhome.php
Update function names
[friendica-addons.git] / communityhome / communityhome.php
index f3e4783edb73eb9cb6ee24df775bf3ba6cc4c326..169d2416cd74811ffae54ce590dcd218ed78db24 100644 (file)
@@ -33,25 +33,28 @@ function communityhome_getopts() {
        ];
 }
 
-function communityhome_plugin_admin(&$a, &$o) {
-       $tpl = get_markup_template( 'settings.tpl', 'addon/communityhome/' );
+function communityhome_addon_admin(&$a, &$o)
+{
+       $tpl = get_markup_template('settings.tpl', 'addon/communityhome/');
 
        $opts = communityhome_getopts();
        $ctx = [
                '$submit' => t("Submit"),
                '$fields' => [],
        ];
-       foreach($opts as $k=>$v) {
+
+       foreach ($opts as $k => $v) {
                $ctx['fields'][] = ['communityhome_'.$k, $v, Config::get('communityhome', $k)];
        }
        $o = replace_macros($tpl, $ctx);
 }
 
-function communityhome_plugin_admin_post(&$a,&$b) {
-       if(x($_POST,'communityhome-submit')) {
+function communityhome_addon_admin_post(&$a, &$b)
+{
+       if (x($_POST, 'communityhome-submit')) {
                $opts = communityhome_getopts();
-               foreach($opts as $k=>$v) {
-                       Config::set('communityhome', $k, x($_POST,'communityhome_'.$k));
+               foreach ($opts as $k => $v) {
+                       Config::set('communityhome', $k, x($_POST, 'communityhome_'.$k));
                }
        }
 }