Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
38aa3a29
Verified
Commit
38aa3a29
authored
2 months ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
(User) - lock edition
Lock edition if user is locked.
parent
9edefd0b
dev
6344-template-issue-when-creating-a-template-with-empty-password-error-message-should-not-be-seen
6365-core-locking-mechanism-is-not-changing-the-mail-ressource-it-does-lock-the-mail-account
core-php8
master
fusiondirectory-1.5
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugins/personal/generic/class_user.inc
+18
-0
plugins/personal/generic/class_user.inc
with
18 additions
and
0 deletions
+18
-0
plugins/personal/generic/class_user.inc
+
18
−
0
View file @
38aa3a29
...
...
@@ -262,6 +262,7 @@ class user extends simplePlugin
global
$config
;
parent
::
__construct
(
$dn
,
$object
,
$parent
,
$mainTab
);
if
(
$this
->
is_template
&&
!
$this
->
initially_was_account
)
{
$this
->
attributesAccess
[
'userPassword'
]
->
setValue
(
'%askme%'
);
}
...
...
@@ -275,6 +276,12 @@ class user extends simplePlugin
$this
->
attributesAccess
[
'jpegPhoto'
]
->
setPlaceholder
(
fread
(
$fd
,
filesize
(
$filename
)));
$this
->
was_locked
=
$this
->
attributesAccess
[
'userPassword'
]
->
isLocked
();
if
(
$this
->
was_locked
){
$this
->
read_only
=
TRUE
;
$warning
=
new
FusionDirectoryWarning
(
nl2br
(
htmlescape
(
sprintf
(
_
(
"This user account is locked ! Unlock to edit first."
)))));
$warning
->
display
();
}
// Do not apply automatic snap on templates nor if the DN is not yet processed (new creation from template)
if
(
$this
->
is_template
!==
TRUE
&&
$this
->
dn
!==
'new'
)
{
// Verification is snapshot is enabled and automatic.
...
...
@@ -286,6 +293,17 @@ class user extends simplePlugin
}
}
// private function isUserLocked () : bool
// {
// $result = FALSE;
//
// if (isset($this->attributesAccess['userPassword']) && preg_match('/^\{[^\}]/', $this->attributesAccess['userPassword']->getValue())) {
// $result = preg_match('/^[^\}]*+\}!/', $this->attributesAccess['userPassword']->getValue()) === 1;
// }
//
// return $result;
// }
function
resetCopyInfos
()
{
parent
::
resetCopyInfos
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets