added getSelfServiceSearchAttributes()
This commit is contained in:
parent
6044fa1f48
commit
e79d235e73
|
@ -654,6 +654,17 @@ class baseModule {
|
||||||
if (isset($this->meta['extensions']) && is_array($this->meta['extensions'])) return $this->meta['extensions'];
|
if (isset($this->meta['extensions']) && is_array($this->meta['extensions'])) return $this->meta['extensions'];
|
||||||
else return array();
|
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();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue