Verified Commit 38aa3a29 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: (User) - lock edition

Lock edition if user is locked.
Showing with 18 additions and 0 deletions
+18 -0
......@@ -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();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment