summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 708ca5c)
raw | patch | inline | side by side (parent: 708ca5c)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Jun 2011 12:37:39 +0000 (12:37 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 28 Jun 2011 12:37:39 +0000 (12:37 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20925 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/addons/dyngroup/class_DynamicLdapGroup.inc | patch | blob | history |
diff --git a/gosa-core/plugins/addons/dyngroup/class_DynamicLdapGroup.inc b/gosa-core/plugins/addons/dyngroup/class_DynamicLdapGroup.inc
index 2c02078f19ddbcb15e9548686ef70c76c33bc9be..93b1222133ea7172c9c9a7256219721982c04234 100644 (file)
}
+ /*!\brief Checks whether the given attribute is managed by this dyngroup extension or not.
+ */
+ function isAttributeDynamic($attr)
+ {
+ if($this->is_account){
+ foreach($this->labeledURIparsed as $uri){
+ if($uri['attr'] == $uri) return(TRUE);
+ }
+ }
+ return(FALSE);
+ }
+
+
public function check ()
{
$messages = plugin::check();