added getSelfServiceSearchAttributes()

This commit is contained in:
Roland Gruber 2006-06-28 15:12:29 +00:00
parent 6044fa1f48
commit e79d235e73
1 changed files with 11 additions and 0 deletions

View File

@ -654,6 +654,17 @@ class baseModule {
if (isset($this->meta['extensions']) && is_array($this->meta['extensions'])) return $this->meta['extensions'];
else return array();
}
/**
* Returns a list of possible search attributes for the self service.
*
* @return array attributes
*/
function getSelfServiceSearchAttributes() {
if (isset($this->meta['selfServiceSearchAttributes']) && is_array($this->meta['selfServiceSearchAttributes'])) return $this->meta['selfServiceSearchAttributes'];
else return array();
}
}