/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
D | Changes.php | 32 protected $changes = []; variable in FreeDSx\\Ldap\\Entry\\Changes 37 public function __construct(Change ...$changes) argument 39 $this->changes = $changes; 48 public function add(Change ...$changes) argument 50 foreach ($changes as $change) { 51 $this->changes[] = $change; 65 return array_search($change, $this->changes, true) !== false; 74 public function remove(Change ...$changes) argument 76 foreach ($changes as $change) { 77 if (($index = array_search($change, $this->changes, true)) !== false) { [all …]
|
D | Entry.php | 41 protected $changes; variable in FreeDSx\\Ldap\\Entry\\Entry 51 $this->changes = new Changes(); 70 $this->changes->add(Change::add(clone $attribute)); 90 $this->changes->add(Change::delete(clone $attribute)); 112 $this->changes()->add(Change::reset(clone $attribute)); 140 $this->changes->add(Change::replace(clone $attribute)); 200 public function changes(): Changes function in FreeDSx\\Ldap\\Entry\\Entry 202 return $this->changes;
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
D | Utils.php | 162 * @param array $changes Changes to apply. 166 public static function modifyRequest(RequestInterface $request, array $changes) argument 168 if (!$changes) { 174 if (!isset($changes['uri'])) { 178 if ($host = $changes['uri']->getHost()) { 179 $changes['set_headers']['Host'] = $host; 181 if ($port = $changes['uri']->getPort()) { 183 $scheme = $changes['uri']->getScheme(); 185 $changes['set_headers']['Host'] .= ':' . $port; 189 $uri = $changes['uri']; [all …]
|
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/ |
D | Utils.php | 157 * @param array $changes Changes to apply. 159 … public static function modifyRequest(RequestInterface $request, array $changes): RequestInterface argument 161 if (!$changes) { 167 if (!isset($changes['uri'])) { 171 if ($host = $changes['uri']->getHost()) { 172 $changes['set_headers']['Host'] = $host; 174 if ($port = $changes['uri']->getPort()) { 176 $scheme = $changes['uri']->getScheme(); 178 $changes['set_headers']['Host'] .= ':'.$port; 182 $uri = $changes['uri']; [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/ |
D | ModifyRequest.php | 49 protected $changes; variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest 60 public function __construct($dn, Change ...$changes) argument 63 $this->changes = $changes; 71 return $this->changes; 78 public function setChanges(Change ...$changes) argument 80 $this->changes = $changes; 115 $changes = $type->getChild(1); 116 if (!($dn instanceof OctetStringType && $changes instanceof SequenceType)) { 121 foreach ($changes->getChildren() as $change) { 133 $changes = Asn1::sequenceOf(); [all …]
|
/plugin/diagramsnet/lib/plugins/ |
D | replay.js | 20 var changes = []; 28 changes.push(change); 33 return changes; 36 function createUndoableEdit(changes) argument 39 edit.changes = changes; 45 'edit', edit, 'changes', edit.changes)); 47 'edit', edit, 'changes', edit.changes)); 55 var changes = decodeChanges(delta, direct); 57 if (changes.length > 0) 59 var edit = createUndoableEdit(changes); [all …]
|
/plugin/changes/ |
D | syntax.php | 184 $changes = $this->getChanges( 194 if (!count($changes)) return true; 198 $this->renderSimpleList($changes, $renderer, $data['render-flags']); 201 $this->renderPageList($changes, $renderer, $data['render-flags']); 228 $changes = []; 268 $changes[] = $change; 277 foreach ($changes as $change) { 280 array_multisort($dates, ($reverse ? SORT_ASC : SORT_DESC), $changes); 283 return $changes; 379 protected function renderPageList($changes, $renderer, $flags) argument [all …]
|
D | plugin.info.txt | 3 base changes 8 desc List the most recent changes of the wiki 9 url http://www.dokuwiki.org/plugin:changes
|
D | README | 1 changes plugin for DokuWiki 3 List the most recent changes of the wiki 6 https://www.dokuwiki.org/plugin:changes 9 lib/plugins/changes/ - if the folder is called different it
|
/plugin/matrixnotifierwas/vendor/psr/http-client/ |
D | CHANGELOG.md | 3 All notable changes to this project will be documented in this file, in reverse chronological order… 7 Add `source` link in composer.json. No code changes. 11 Allow PSR-7 (psr/http-message) 2.0. No code changes. 15 Allow installation with PHP 8. No code changes. 19 First stable release. No changes since 0.3.0.
|
/plugin/authowncloud/ |
D | auth.php | 127 * @param array $changes array of field/value pairs to be changed 130 public function modifyUser($user, $changes) { argument 133 if(isset($changes['pass'])) { 134 if(!OC_User::setPassword($user, $changes['pass'])) return false; 138 if(isset($changes['name'])) { 139 if(!OC_USER::setDisplayName($user, $changes['name'])) return false; 141 if(isset($changes['grps'])) { 142 foreach($changes['grps'] as $grp){ 147 if(isset($changes['mail'])) { 148 … if(!OC_Preferences::setValue($user, 'settings', 'email', $changes['mail'])) return false;
|
/plugin/backlinks/ |
D | deleted.files | 6 _test/data/meta/backlinks_exclude_syntax.changes 9 _test/data/meta/backlinks_include_syntax.changes 14 _test/data/meta/backlink_test_pages.changes 17 _test/data/meta/bob_ross_says.changes 20 _test/data/meta/_dokuwiki.changes 21 _test/data/meta/link.changes 24 _test/data/meta/exclude/link.changes 27 _test/data/meta/include/link.changes
|
/plugin/userhistory/ |
D | admin.php | 64 $changes = array ( ); 77 if ( strtolower ( $change['user'] ) == strtolower ( $user ) ) $changes[] = $change; 88 uasort ( $changes, 'cmp' ); 90 return $changes; 101 $changes = array_values ( $this->_getChanges ( $user ) ); 102 …_list"><p class = "edit_counter">'.$this->getLang ( 'total' ).': '.count ( $changes ).'</p><ol>' ); 104 foreach ( $changes as $key => $change ) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Drive/ |
D | ChangeList.php | 41 public function setChanges($changes) argument 43 $this->changes = $changes; 50 return $this->changes;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/ |
D | ChangesListResponse.php | 39 public function setChanges($changes) argument 41 $this->changes = $changes; 48 return $this->changes;
|
/plugin/authsaml/ |
D | saml.php | 227 $changes = array(); 232 $changes['name'] = $userData['name']; 237 $changes['mail'] = $userData['mail']; 242 $changes['grps'] = $userData['grps']; 246 if (!empty($changes)) { 248 $auth->modifyUser($username, $changes); 251 $this->modifyUser($username, $changes); 355 public function modifyUser($username, $changes) { argument 360 if(!is_array($changes) || !count($changes)) return true; 364 foreach($changes as $field => $value) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/ |
D | GoogleAnalyticsAdminV1alphaChangeHistoryEvent.php | 77 public function setChanges($changes) argument 79 $this->changes = $changes; 86 return $this->changes;
|
/plugin/asciidocjs/node_modules/is-expression/ |
D | CHANGELOG.md | 2 All notable changes to this project will be documented in this file. 10 - See [acorn's CHANGELOG][acorn-4.0.0] for a full list of changes. 17 - See [acorn's CHANGELOG][acorn-3.3.0] for a full list of changes. 22 - See [acorn's CHANGELOG][acorn-3.1.0] for a list of changes. 29 - See [acorn's CHANGELOG][acorn-3.0.0] for a list of breaking changes.
|
/plugin/settingstree/ |
D | script.js | 14 $form.on('settingstree_export_complete',function(e,values,changes){ argument 16 window[opts.on_complete].call(null,values,changes); // call the on_complete callback. 50 var changes = getchanged(); 52 …stree', operation: 'savelevel', pluginname: pluginname, path: path, sectok: token, data: changes }, 60 if (key && changes[key] !== undefined){ 79 var changes = getchanged(); 81 … 'exportlevel', pluginname: pluginname, path: path, sectok: token, data: changes, options: opts.op… 85 … if (r.success){ $root.trigger('settingstree_export_complete',[r.values,simplify(changes)]); }
|
/plugin/tos/ |
D | action.php | 107 $changes = new \dokuwiki\ChangeLog\PageChangeLog($this->getConf('tos')); 108 if (!$changes->hasRevisions()) return 0; 111 while ($revisions = $changes->getRevisions($start, 25)) { 114 $info = $changes->getRevisionInfo($rev);
|
/plugin/authucenter/ |
D | auth.php | 218 … * @param array $changes array of field/value pairs to be changed (password will be clear text) 221 public function modifyUser($user, $changes) { argument 222 if(!is_array($changes) || !count($changes)){ 225 …>_uc_user_edit($user, $_POST['oldpass'], $changes['pass'] ? $changes['pass'] : '', $changes['mail'…
|
/plugin/authyubikey/ |
D | auth.php | 94 …* @param array $changes array of field/value pairs to be changed (password will be clear text) 97 public function modifyUser($user, $changes) { argument 105 if(!is_array($changes) || !count($changes)) return true; 109 foreach($changes as $field => $value) {
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
D | experimental-beta-apis.asciidoc | 9 changes to these APIs should only occur in major versions and will be 10 documented in the breaking changes documentation for that release. 12 with caution because it is possible that breaking changes are made to these 15 have breaking changes in any future version, or it might even be removed
|
/plugin/watchcycle/ |
D | action.php | 143 …$changes = $this->getLastMaintainerRev($event->data, $watchcycle['maintainer'], $last_maintainer_r… 185 $event->data['current']['plugin']['watchcycle']['changes'] = $changes; 304 $changes = 0; 311 return $changes; 319 ++$changes; 323 return $changes;
|
/plugin/projects/lib/ |
D | maker.php | 190 public function update($changes) { argument 191 $changes = array_merge($changes, $this->intermediate_files); 192 $changes = array_keys(array_flip($changes)); 193 if (!$changes) return array(); 195 foreach ($changes as $key => $change) { 201 else unset($changes[$key]);
|