Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 10 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 1 |
TestTakerForm | |
0.00% |
0 / 10 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 1 |
renderGroupTreeForm | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 | |||
returnGroupTreeFormObject | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2013-2023 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
19 | */ |
20 | |
21 | declare(strict_types=1); |
22 | |
23 | namespace oat\taoGroups\helpers; |
24 | |
25 | use common_ext_ExtensionException; |
26 | use common_ext_ExtensionsManager; |
27 | use core_kernel_classes_Property; |
28 | use core_kernel_classes_Resource; |
29 | use oat\taoGroups\models\GroupsService; |
30 | use tao_helpers_form_GenerisTreeForm; |
31 | |
32 | /** |
33 | * Helper to render the groups form on the user pane |
34 | * |
35 | * @access public |
36 | * |
37 | * @author Joel Bout, <joel@taotesting.com> |
38 | * |
39 | * @package taoGroups |
40 | */ |
41 | class TestTakerForm |
42 | { |
43 | /** |
44 | * Returns a form to modify the groups a user is part of |
45 | * |
46 | * @param core_kernel_classes_Resource $subject |
47 | * |
48 | * @throws common_ext_ExtensionException |
49 | * |
50 | * @return string |
51 | */ |
52 | public static function renderGroupTreeForm(core_kernel_classes_Resource $subject): string |
53 | { |
54 | // Ensure groups constants are loaded |
55 | common_ext_ExtensionsManager::singleton()->getExtensionById('taoGroups'); |
56 | |
57 | $memberProperty = new core_kernel_classes_Property(GroupsService::PROPERTY_MEMBERS_URI); |
58 | $groupForm = tao_helpers_form_GenerisTreeForm::buildTree($subject, $memberProperty); |
59 | $groupForm->setData('title', __('Add to group')); |
60 | |
61 | return $groupForm->render(); |
62 | } |
63 | |
64 | /** |
65 | * Returns non-rendered form |
66 | * |
67 | * @param core_kernel_classes_Resource $subject |
68 | * |
69 | * @throws common_ext_ExtensionException |
70 | * |
71 | * @return tao_helpers_form_GenerisTreeForm |
72 | */ |
73 | public static function returnGroupTreeFormObject( |
74 | core_kernel_classes_Resource $subject |
75 | ): tao_helpers_form_GenerisTreeForm { |
76 | // Ensure groups constants are loaded |
77 | common_ext_ExtensionsManager::singleton()->getExtensionById('taoGroups'); |
78 | |
79 | $memberProperty = new core_kernel_classes_Property(GroupsService::PROPERTY_MEMBERS_URI); |
80 | $groupForm = tao_helpers_form_GenerisTreeForm::buildTree($subject, $memberProperty); |
81 | $groupForm->setData('title', __('Add to group')); |
82 | |
83 | return $groupForm; |
84 | } |
85 | } |