39 |
40 | Current URL41 | 44 |45 | TinyAuth URL path: 46 | 47 |Authentication (allow)48 |49 | No information available'; 53 | } else { 54 | $icon = $isPublic ? AuthPanel::ICON_PUBLIC : AuthPanel::ICON_RESTRICTED; 55 | echo ' ' . $icon . ' ' . ($isPublic ? 'public' : 'secured') . ' action '; 56 | if ($isPublic) { 57 | echo 'Any guest can visit this page ';
58 | } else {
59 | echo 'Login required to visit this page ';
60 | }
61 | }
62 | } else {
63 | echo 'disabled';
64 | }
65 | ?>
66 |
67 |
68 | ';
70 | echo 'Authentication provider used: ' . get_class($authenticationProvider);
71 | echo '';
72 | } ?>
73 | ';
75 | echo 'Identification provider used: ' . get_class($identificationProvider);
76 | echo '';
77 | } ?>
78 |
79 | |
80 |
81 |
82 | Authorization (ACL)83 | Logged in with ID ' . h($user[$primaryKey]) . ''; 89 | 90 | echo 'Roles'; 91 | Debugger::dump($roles); 92 | 93 | } else { 94 | echo 'not logged in'; 95 | } 96 | 97 | } else { 98 | echo 'disabled '; 99 | } 100 | ?> 101 | 102 | 103 | 104 | 105 | 106 | 107 | The following roles have access to this action: 108 | 109 | The following roles would have access to this action once you revoke public access: 110 | 111 | 112 |
|
125 |