Home
last modified time | relevance | path

Searched +full:add -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 215) sorted by relevance

123456789

/dokuwiki/inc/Form/
H A DTagCloseElement.php33 throw new \BadMethodCallException('You can\t add classes to closing tag');
48 throw new \BadMethodCallException('You can\t add ID to closing tag');
65 throw new \BadMethodCallException('You can\t add attributes to closing tag');
81 throw new \BadMethodCallException('You can\t add attributes to closing tag');
H A DForm.php10 * Represents the whole Form. This is what you work on, and add Elements to
56 // add the security token by default
173 'You can\'t add a form to a form'
192 'You can\'t add a form to a form'
354 * Add fixed HTML to the form
366 * Add a closed HTML tag to the form
378 * Add an open HTML tag to the form
392 * Add a closing HTML tag to the form
/dokuwiki/lib/plugins/usermanager/
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...]
H A Dscript.js2 * Add JavaScript confirmation to the User Delete button
/dokuwiki/lib/plugins/authad/adLDAP/classes/
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 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 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 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 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/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 Dtoolbar.js73 * @param DOMElement btn Button element to add the action to
95 * @param DOMElement btn Button element to add the action to
133 * @param DOMElement btn Button element to add the action to
148 * @param DOMElement btn Button element to add the action to
166 * @param DOMElement btn Button element to add the action to
188 * Add button action for picker buttons and create picker element
190 * @param jQuery btn Button element to add the action to
213 * Add button action for the link wizard button
215 * @param DOMElement btn Button element to add the action to
H A Dlocktimer.js53 * Add another field of the editform to be posted to the server when a draft is saved
60 * Add a callback that is executed when the post request to renew the lock and save the draft returns successfully
64 * is updated. This method can be used to add further callbacks to be executed at that moment.
H A Dedit.js45 // create the icon and add it to the button
135 * Add button action for signature button
137 * @param {jQuery} $btn Button element to add the action to
220 * Activate "not saved" dialog, add draft deletion to page unload,
221 * add handlers to monitor changes
/dokuwiki/conf/
H A Dscheme.conf1 #Add URL schemes you want to be recognized as links here
/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/
H A Dfeed.php
/dokuwiki/inc/Parsing/Handler/
H A DCallWriterInterface.php8 * Add a call to our call list
H A DReWriterInterface.php24 * Process any calls that have been added and add them to the
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dprogress.php126 'ACCEPT-CHANGES','ACCEPT-ROW-CHANGES','ADD-BUFFER','ADD-CALC-COLUMN',
127 'ADD-COLUMNS-FROM','ADD-EVENTS-PROCEDURE','ADD-FIELDS-FROM','ADD-FIRST',
128 'ADD-HEADER-ENTRY','ADD-INDEX-FIELD','ADD-LAST','ADD
[all...]
/dokuwiki/inc/Menu/Item/
H A DBack.php9 * would need to add this item manually.
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DArchive.php81 * Add a file to the current archive using an existing file in the filesystem
90 * Add a file to the current archive using the given $data as content
93 * @param string $data binary content of the file to add
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php195 // Add value to struct or array
197 // Add to struct
200 // Add to array
204 // Just add as a paramater
/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/
H A DMailer.class.php59 // add some default headers for mailfiltering FS#2247
143 * Add an arbitrary header to the mail
243 // add default token replacements
286 * Add the To: recipients
297 * Add the Cc: recipients
308 * Add the Bcc: recipients
319 * Add the From: address
333 * Add the mail's Subject: header
421 // add address quotes
436 // add t
[all...]
/dokuwiki/inc/Extension/
H A DRemotePlugin.php13 * Add functionality to the remote API in a plugin
55 // add to result

123456789