2009-06-30 10:46:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-07-01 06:09:17 +00:00
|
|
|
* Classes and functions for the template engine.
|
2009-06-30 10:46:00 +00:00
|
|
|
*
|
2009-07-01 06:09:17 +00:00
|
|
|
* @author The phpLDAPadmin development team
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-06-30 10:46:00 +00:00
|
|
|
* Represents an attribute whose values are dates
|
2009-07-01 06:09:17 +00:00
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
* @subpackage Templates
|
2009-06-30 10:46:00 +00:00
|
|
|
*/
|
2022-01-14 06:29:20 +00:00
|
|
|
class DateAttribute extends PLAAttribute {
|
2009-06-30 10:46:00 +00:00
|
|
|
}
|
|
|
|
?>
|