dolibarr 19.0.3
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
24require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
25
26
30abstract class ModeleGenPassword
31{
32 public $picto = 'generic';
33
39 public $WithoutAmbi = 0;
40
44 public $error = '';
45
49 public $db;
50
54 public $conf;
55
59 public $langs;
60
64 public $user;
65
71 public function isEnabled()
72 {
73 return true;
74 }
75
81 public function getDescription()
82 {
83 global $langs;
84 return $langs->trans("NoDescription");
85 }
86
92 public function getExample()
93 {
94 global $langs;
95 $langs->load("bills");
96 return $langs->trans("NoExample");
97 }
98
104 public function getNewGeneratedPassword()
105 {
106 global $langs;
107 return $langs->trans("NotAvailable");
108 }
109
117 public function validatePassword($password)
118 {
119 return 1;
120 }
121}
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.