2009-06-30 10:46:00 +00:00
|
|
|
<?php
|
2009-07-01 06:09:17 +00:00
|
|
|
// $Header$
|
2009-06-30 10:46:00 +00:00
|
|
|
|
|
|
|
/**
|
2009-07-01 06:09:17 +00:00
|
|
|
* Classes and functions for the template engine.
|
|
|
|
*
|
|
|
|
* @author The phpLDAPadmin development team
|
2009-06-30 10:46:00 +00:00
|
|
|
* @package phpLDAPadmin
|
2009-07-01 06:09:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a shadow date attribute
|
2009-06-30 10:46:00 +00:00
|
|
|
*
|
2009-07-01 06:09:17 +00:00
|
|
|
* @package phpLDAPadmin
|
|
|
|
* @subpackage Templates
|
2009-06-30 10:46:00 +00:00
|
|
|
*/
|
|
|
|
class ShadowAttribute extends Attribute {
|
|
|
|
public $shadow_before_today_attrs = array('shadowLastChange','shadowMin');
|
|
|
|
public $shadow_after_today_attrs = array('shadowMax','shadowExpire','shadowWarning','shadowInactive');
|
|
|
|
}
|
|
|
|
?>
|