PHPDoc update
This commit is contained in:
parent
751db91421
commit
9c2f6e2135
|
@ -1232,7 +1232,7 @@ abstract class baseModule {
|
|||
* @param array $fields list of active fields
|
||||
* @param array $attributes attributes of LDAP account
|
||||
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
|
||||
* @return htmlElement meta HTML object
|
||||
* @return array list of meta HTML elements (field name => htmlTableRow)
|
||||
*
|
||||
* @see htmlElement
|
||||
*/
|
||||
|
|
|
@ -2515,7 +2515,7 @@ class inetOrgPerson extends baseModule implements passwordService {
|
|||
* @param array $fields list of active fields
|
||||
* @param array $attributes attributes of LDAP account
|
||||
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
|
||||
* @return array meta HTML
|
||||
* @return array list of meta HTML elements (field name => htmlTableRow)
|
||||
*/
|
||||
function getSelfServiceOptions($fields, $attributes, $passwordChangeOnly) {
|
||||
$return = array();
|
||||
|
|
|
@ -819,7 +819,7 @@ class kolabUser extends baseModule {
|
|||
* @param array $fields list of active fields
|
||||
* @param array $attributes attributes of LDAP account
|
||||
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
|
||||
* @return array meta HTML
|
||||
* @return array list of meta HTML elements (field name => htmlTableRow)
|
||||
*/
|
||||
function getSelfServiceOptions($fields, $attributes, $passwordChangeOnly) {
|
||||
if ($passwordChangeOnly) {
|
||||
|
|
|
@ -2073,7 +2073,7 @@ class posixAccount extends baseModule implements passwordService {
|
|||
* @param array $fields list of active fields
|
||||
* @param array $attributes attributes of LDAP account
|
||||
* @param boolean $passwordChangeOnly indicates that the user is only allowed to change his password and no LDAP content is readable
|
||||
* @return array meta HTML
|
||||
* @return array list of meta HTML elements (field name => htmlTableRow)
|
||||
*/
|
||||
function getSelfServiceOptions($fields, $attributes, $passwordChangeOnly) {
|
||||
$return = array();
|
||||
|
|
Loading…
Reference in New Issue