dolibarr  19.0.0-dev
modules_genpassword.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2007-2011 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
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, see <https://www.gnu.org/licenses/>.
16  * or see https://www.gnu.org/
17  */
18 
24 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
25 
26 
30 abstract class ModeleGenPassword
31 {
32  public $picto = 'generic';
33 
39  public $WithoutAmbi = 0;
40 
44  public $error = '';
45 
51  public function isEnabled()
52  {
53  return true;
54  }
55 
61  public function getDescription()
62  {
63  global $langs;
64  return $langs->trans("NoDescription");
65  }
66 
72  public function getExample()
73  {
74  global $langs;
75  $langs->load("bills");
76  return $langs->trans("NoExample");
77  }
78 
84  public function getNewGeneratedPassword()
85  {
86  global $langs;
87  return $langs->trans("NotAvailable");
88  }
89 
97  public function validatePassword($password)
98  {
99  return 1;
100  }
101 }
Parent class for password rules/management modules.
getDescription()
Return description of module.
isEnabled()
Return if a module can be used or not.
validatePassword($password)
Validate a password.
getExample()
Return an example of password generated by this module.
getNewGeneratedPassword()
Build new password.