Home
last modified time | relevance | path

Searched refs:add (Results 1 – 25 of 37) sorted by relevance

12

/dokuwiki/lib/plugins/authad/adLDAP/classes/
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 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";
91 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $this->adldap->utilities()->escapeCharacters($add["cn"][0]) . ", " . $container . "," . $this->adldap->getBaseDn(), $add);
H A DadLDAPGroups.php80 $add = array();
81 $add["member"] = $childDn;
83 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $parentDn, $add);
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["member"] = $userDn;
119 $result = @ldap_mod_add($this->adldap->getLdapConnection(), $groupDn, $add);
129 * @param string $group The group to add th
[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);
119 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $add["c
[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
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);
146 * @param string $username The username of the user to add the Exchange account to
147 * @param string $emailAddress The email address to add to this user
188 // We do not have to demote an email address from the default so we can just add th
[all...]
/dokuwiki/lib/scripts/
H A Ddelay.js12 * delay.add(func, timeout).
22 add: function (func, timeout) { method in timer
57 this.timer = timer.add(function () { _this.exec.call(_this); },
H A Dpage.js36 $highlight = $highlight.add($tgt);
41 $highlight = $highlight.add($tgt);
H A Dfileuploader.js200 add = function(nextObj, i){ function
224 add(obj[i], i);
230 add(obj[i], i);
394 var id = this._handler.add(fileContainer);
881 add: function(file){}, method in qq.UploadHandlerAbstract
965 add: function(fileInput){
1148 add: function(file){
/dokuwiki/inc/lang/hu/
H A Dresetpwd.txt3 Kérlek, add meg az új jelszót a felhasználódhoz.
H A Dresendpwd.txt3 Kérlek, add meg a felhasználói azonosítód az új jelszó elküldéséhez. A jelszó cseréjéhez szükséges megerősítő linket elküldjük a regisztrált e-mail címedre.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php565 // and add bit-length. Use results to build Y.
576 // NH hash and add bit-length. Concatenate the result to Y.
624 $temp = $m[$i]->add($k[$i]);
626 $temp = $temp->multiply($m[$i + 4]->add($k[$i + 4]));
627 $y = $y->add($temp);
629 $temp = $m[$i + 1]->add($k[$i + 1]);
631 $temp = $temp->multiply($m[$i + 5]->add($k[$i + 5]));
632 $y = $y->add($temp);
634 $temp = $m[$i + 2]->add($k[$i + 2]);
636 $temp = $temp->multiply($m[$i + 6]->add(
[all...]
/dokuwiki/lib/plugins/acl/lang/en/
H A Dhelp.txt3 On this page you can add and remove permissions for namespaces and pages in your wiki.
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dpagetools.less45 /* add transparent border to prevent jumping when proper border is added on hover */
58 /* add transparent border to prevent jumping when proper border is added on focus */
/dokuwiki/inc/Action/
H A DSubscribe.php90 $ok = $subManager->add($target, $INPUT->server->str('REMOTE_USER'), $style);
/dokuwiki/inc/
H A DDifferenceEngine.php62 var $type = 'add';
198 $add = array();
200 $add[] = $to_lines[$yi++];
202 if ($delete && $add)
203 $edits[] = new _DiffOp_Change($delete, $add);
206 elseif ($add)
207 $edits[] = new _DiffOp_Add($add);
801 elseif ($edit->type == 'add')
955 elseif ($this->_tag == 'add')
1070 $orig->addWords($edit->closing, 'add');
[all...]
H A Ddeprecated.php6 * Note: when adding to this file, please also add appropriate actions to _test/rector.php
420 * @deprecated 2019-04-20 \dokuwiki\Subscriptions\SubscriberManager::add function in Subscription
422 public function add($id, $user, $style, $data = '') {
423 DebugHelper::dbgDeprecatedFunction('\dokuwiki\Subscriptions\SubscriberManager::add');
425 return $manager->add($id, $user, $style, $data);
H A DPassHash.php331 $add = 7;
336 $nr ^= ((($nr & 63) + $add) * $charVal) + ($nr << 8);
338 $add += $charVal;
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php119 $subscriberManager->add($target, $user, $style, time());
H A DSubscriberManager.php37 public function add($id, $user, $style, $data = '')
58 } //always add current time for new subscriptions
211 $result[$target][$u] = [$m[2], $m[3]]; // add to result
38 public function add($id, $user, $style, $data = '') global() function in dokuwiki\\Subscriptions\\SubscriberManager
/dokuwiki/vendor/kissifrot/php-ixr/
H A DREADME.md24 This package is published to [Packagist](https://packagist.org/), but if you don't want to use it simply add
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md52 // To create a TAR archive directly in memory, create() it, add*()
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php17 * $c = $a->add($b);
252 public function add(BigInteger $y)
254 return new static($this->value->add($y->value));
875 function add($y) global() function in phpseclib\\Math\\BigInteger
/dokuwiki/conf/
H A Dmysql.conf.php.example132 /* Additional SQL statements to add new users with the user manager */
135 /* This statement should add a user to the database. Minimum information
150 /* This statement should add a group to the database.
/dokuwiki/vendor/composer/
H A DClassLoader.php21 * $loader->add('Symfony\Component', __DIR__.'/component');
22 * $loader->add('Symfony', __DIR__.'/framework');
180 public function add($prefix, $paths, $prepend = false)
188 public function add($prefix, $paths, $prepend = false) global() function in Composer\\Autoload\\ClassLoader
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt60 Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]].
109 You can add footnotes ((This is a footnote)) by using double parentheses.
111 You can add footnotes ((This is a footnote)) by using double parentheses.
159 Of course, you can add a title (displayed as a tooltip by most browsers), too.
192 When you upload a ''video.webm'' and ''video.ogv'' next to the referenced ''video.mp4'', DokuWiki will automatically add them as alternatives so that one of the three files is understood by your browser.
348 You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text.

12