Home
last modified time | relevance | path

Searched full:add (Results 76 – 100 of 5573) sorted by path

12345678910>>...223

/dokuwiki/lib/plugins/acl/
H A Dremote.php32 * Add a new ACL rule to the config
H A Dscript.js103 // add new highlighting
/dokuwiki/lib/plugins/authad/
H A Daction.php88 // add locate domain selector just after the username input box
H A Dauth.php36 * // add a list of comma separated ldap contact fields.
215 // add additional fields to read
255 // always add the default group to the list of groups
260 // add the user's domain to the groups
470 * already exists try to add $numberOfAdds further users to it.
474 * @return int number of Users actually add to Array
699 // add possible domain specific configuration
751 // add default domain, using the name from account suffix
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPContacts.php74 $add = $this->adldap->adldap_schema($attributes);
77 $add["cn"][0] = $attributes["display_name"];
78 $add["objectclass"][0] = "top";
79 $add["objectclass"][1] = "person";
80 $add["objectclass"][2] = "organizationalPerson";
81 $add["objectclass"][3] = "contact";
83 $add["msExchHideFromAddressLists"][0] = "TRUE";
90 // Add the entry
91 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $this->adldap->utilities()->escapeCharacters($add["cn"][0]) . ", " . $container . "," . $this->adldap->getBaseDn(), $add);
[all...]
H A DadLDAPExchange.php57 * @param string $username The username of the user to add the Exchange account to
60 * @param string $emailAddress The primary email address to add to this user
99 * Add an X400 address to Exchange
103 * @param string $username The username of the user to add the X400 to to
124 // We do not have to demote an email address from the default so we can just add the new proxy address
128 $add = $this->adldap->adldap_schema($attributes);
130 if (!$add) { return false; }
135 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $userDn, $add);
144 * Add an address to Exchange
146 * @param string $username The username of the user to add th
[all...]
H A DadLDAPFolders.php160 $add=array();
161 $add["objectClass"] = "organizationalUnit";
162 $add["OU"] = $attributes['ou_name'];
169 $result = ldap_add($this->adldap->getLdapConnection(), "OU=" . $add["OU"] . ", " . $containers . $this->adldap->getBaseDn(), $add);
H A DadLDAPGroups.php58 * Add a group to a group
80 $add = array();
81 $add["member"] = $childDn;
83 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $parentDn, $add);
91 * Add a user to a group
93 * @param string $group The group to add the user to
94 * @param string $user The user to add to the group
101 // and add it using the full DN of the group
116 $add = array();
117 $add["membe
[all...]
H A DadLDAPUsers.php96 $add = $this->adldap->adldap_schema($attributes);
99 $add["cn"][0] = $attributes["display_name"];
100 $add["samaccountname"][0] = $attributes["username"];
101 $add["objectclass"][0] = "top";
102 $add["objectclass"][1] = "person";
103 $add["objectclass"][2] = "organizationalPerson";
104 $add["objectclass"][3] = "user"; //person?
105 //$add["name"][0]=$attributes["firstname"]." ".$attributes["surname"];
112 $add["userAccountControl"][0] = $this->accountControl($control_options);
118 // Add th
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php43 // Add the capabilities to change the password
309 // always add the default group to the list of groups
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php231 // add user to the groups
318 // add membership for new groups
550 $groups = [$conf['defaultgroup']]; // always add default config
/dokuwiki/lib/plugins/authpdo/lang/en/
H A Dsettings.php23 $lang['join-group'] = 'SQL Statement to add a user to an existing group';
/dokuwiki/lib/plugins/config/
H A Dadmin.php92 // rewrite config is broken. Add $ID as hidden field to remember
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php222 // class wasn't found add to errors
225 // no class given, add to errors
H A DLoader.php280 // add fieldset key
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1013 // add default base folder if specified to handle case where zip doesn't contain this
H A Dlist.php75 * Add hidden fields to the form with the given data
77 * @param array $data key-value list of fields and their values to add
89 * Add closing tags
128 * Add a column with the given class and content
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php122 // add all other dirs
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php260 * Triggers event to let plugins add their own data
/dokuwiki/lib/plugins/styling/
H A Dscript.js56 // add button on main page
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php141 case "add":
324 echo $this->locale_xhtml('add');
327 $this->htmlUserForm('add', null, [], 4);
370 * Display form to add or modify a user
372 * @param string $cmd 'add' or 'modify'
460 if ($cmd == 'add') {
636 * Add an user to auth backend
1060 // check we are allowed to add users
H A Dcli.php30 // add
31 $options->registerCommand('add', 'Add an user to auth backend');
32 $options->registerArgument('login', 'Username', true, 'add');
33 $options->registerArgument('mail', 'Email address', true, 'add');
34 $options->registerArgument('name', 'Full name', false, 'add');
35 $options->registerArgument('groups', 'Groups to be added, comma-seperated', false, 'add');
36 $options->registerArgument('password', 'Password to set', false, 'add');
37 $options->registerOption('notify', 'Notify user', 'n', false, 'add');
43 // add t
[all...]
/dokuwiki/lib/plugins/usermanager/lang/ar/
H A Dlang.php20 $lang['add'] = 'إضافة';
/dokuwiki/lib/plugins/usermanager/lang/bg/
H A Dlang.php21 $lang['add'] = 'Добави';
/dokuwiki/lib/plugins/usermanager/lang/ca-valencia/
H A Dlang.php20 $lang['add'] = 'Afegir';

12345678910>>...223