Elgg  Version master
admins.php
Go to the documentation of this file.
1 <?php
6 echo elgg_view('admin/users/header', [
7  'filter' => 'admin',
8 ]);
9 
10 echo elgg_view_form('admin/users/bulk_actions', [
11  'prevent_double_submit' => false,
12 ], [
13  'filter' => 'admins',
14  'options' => [
15  'metadata_name_value_pairs' => [
16  'admin' => 'yes',
17  ],
18  ],
19 ]);
elgg_view_form(string $action, array $form_vars=[], array $body_vars=[])
Definition: views.php:1033
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:156