aboutsummaryrefslogtreecommitdiffstats
path: root/doc/en/hook/app_installed_filter.bb
blob: f0d91d6f0a8539547c19c74996d5061898d31757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[h2]app_installed_filter[/h2]

Allow plugins to filter the result of app_installed.

Code excerpt:

[code]
                        $filter_arr = [
                                'uid'=>$uid,
                                'app'=>$app,
                                'installed'=>$r
                        ];
                        call_hooks('app_installed_filter',$filter_arr);
                        $r = $filter_arr['installed'];
[/code]

cxref: Zotlabs/Lib/Apps.php