]> git.mxchange.org Git - friendica.git/commitdiff
Add documentation comments to Module\Settings\Delegation
authorHypolite Petovan <hypolite@mrpetovan.com>
Thu, 10 Oct 2019 08:17:37 +0000 (04:17 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Thu, 10 Oct 2019 08:17:37 +0000 (04:17 -0400)
src/Module/Settings/Delegation.php

index 247d16de03cb17c4d18b83d5fafc297b7f19082c..f7edc72c946b84027a4a5ebf162afc0d2f81578a 100644 (file)
@@ -15,6 +15,9 @@ use Friendica\Module\BaseSettingsModule;
 use Friendica\Network\HTTPException;
 use Friendica\Util\Strings;
 
+/**
+ * Account delegation settings module
+ */
 class Delegation extends BaseSettingsModule
 {
        public static function post()
@@ -54,8 +57,10 @@ class Delegation extends BaseSettingsModule
                /** @var Arguments $args */
                $args = self::getClass(Arguments::class);
 
+               // @TODO Replace with router-provided arguments
                $action = $args->get(2);
                $user_id = $args->get(3);
+
                if ($action === 'add' && $user_id) {
                        if (Session::get('submanage')) {
                                notice(L10n::t('Delegated administrators can view but not change delegation permissions.'));