18 lines
302 B
PHP
18 lines
302 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Classes and functions for the template engine.
|
||
|
*
|
||
|
* @author The phpLDAPadmin development team
|
||
|
* @package phpLDAPadmin
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Represents an attribute whose values are passwords
|
||
|
*
|
||
|
* @package phpLDAPadmin
|
||
|
* @subpackage Templates
|
||
|
*/
|
||
|
class PasswordAttribute extends Attribute {
|
||
|
}
|
||
|
?>
|