Home
last modified time | relevance | path

Searched refs:changes (Results 1 – 25 of 463) sorted by relevance

12345678910>>...19

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DChanges.php32 protected $changes = [];
35 * @param Change ...$changes
37 public function __construct(Change ...$changes)
39 $this->changes = $changes; argument
45 * @param Change ...$changes
48 public function add(Change ...$changes)
50 foreach ($changes as $change) {
51 $this->changes[] = $change;
65 return array_search($change, $this->changes, tru argument
23 protected $changes = []; global() variable in FreeDSx\\Ldap\\Entry\\Changes
28 __construct(Change...$changes) global() argument
94 set(Change...$changes) global() argument
[all...]
H A DEntry.php41 protected $changes;
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));
196 * Get the changes accumulated for this entry.
200 public function changes(): Changes
202 return $this->changes;
33 protected $changes; global() variable in FreeDSx\\Ldap\\Entry\\Entry
192 public function changes(): Changes global() function in FreeDSx\\Ldap\\Entry\\Entry
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DUtils.php168 if (!$changes) {
174 if (!isset($changes['uri'])) {
189 $uri = $changes['uri'];
201 if (isset($changes['query'])) {
207 isset($changes['method']) ? $changes['method'] : $request->getMethod(),
210 isset($changes['body']) ? $changes['body'] : $request->getBody(),
212 ? $changes['version']
229 isset($changes['method']) ? $changes['method'] : $request->getMethod(),
232 isset($changes['body']) ? $changes['body'] : $request->getBody(),
233 isset($changes['version'])
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyRequest.php32 * changes SEQUENCE OF change SEQUENCE {
49 protected $changes;
58 * @param Change ...$changes
60 public function __construct($dn, Change ...$changes)
63 $this->changes = $changes;
71 return $this->changes;
75 * @param Change ...$changes argument
78 public function setChanges(Change ...$changes)
80 $this->changes
46 protected $changes; global() variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest
57 __construct($dn, Change...$changes) global() argument
[all...]
/plugin/diagramsnet/lib/plugins/
H A Dreplay.js20 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));
57 if (changes.length > 0)
59 var edit = createUndoableEdit(changes);
66 'edit', edit, 'changes', changes));
[all …]
/plugin/changes/
H A Dsyntax.php8 * Changes Plugin: List the most recent changes of the wiki
49 $this->Lexer->addSpecialPattern('\{\{changes>[^}]*\}\}', $mode, 'plugin_changes');
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;
274 // Date sort merged page and media changes
277 foreach ($changes a
377 renderPageList($changes, & $R, $flags) global() argument
424 renderSimpleList($changes, & $R, $flags = null) global() argument
[all...]
H A Dplugin.info.txt3 base changes
8 desc List the most recent changes of the wiki
9 url http://www.dokuwiki.org/plugin:changes
/plugin/authowncloud/
H A Dauth.php127 * @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/
H A Ddeleted.files6 _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/authgooglesheets/vendor/google/apiclient-services/src/Drive/
H A DChangeList.php41 public function setChanges($changes) argument
43 $this->changes = $changes;
50 return $this->changes;
/plugin/userhistory/
H A Dadmin.php68 $changes = array ( );
81 if ( strtolower ( $change['user'] ) == strtolower ( $user ) ) $changes[] = $change;
92 uasort ( $changes, 'cmp' );
94 return $changes;
105 $changes = array_values ( $this->_getChanges ( $user ) );
106 …_list"><p class = "edit_counter">'.$this->getLang ( 'total' ).': '.count ( $changes ).'</p><ol>' );
108 foreach ( $changes as $key => $change ) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dns/
H A DChangesListResponse.php39 public function setChanges($changes) argument
41 $this->changes = $changes;
48 return $this->changes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/
H A DGoogleAnalyticsAdminV1alphaChangeHistoryEvent.php77 public function setChanges($changes) argument
79 $this->changes = $changes;
86 return $this->changes;
/plugin/authsaml/
H A Dsaml.php227 $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/settingstree/
H A Dscript.js14 $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/
H A Daction.php107 $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/authyubikey/
H A Dauth.php94 …* @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/authucenter/
H A Dauth.php218 … * @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/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dexperimental-beta-apis.asciidoc9 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/oauth/
H A Dauth.php77 public function modifyUser($user, $changes) argument
81 if (isset($changes['mail'])) {
82 $found = $this->getUserByEmail($changes['mail']);
89 $ok = parent::modifyUser($user, $changes);
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/
H A DChangeLog.md3 All notable changes to this project will be documented in this file. This project adheres to [Seman…
25 No changes
29 No changes
/plugin/projects/lib/
H A Dmaker.php190 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]);
/plugin/watchcycle/
H A Daction.php29 // ensure a page revision is created when summary changes:
141 $changes = $this->getLastMaintainerRev($event->data, $watchcycle['maintainer'], $last_maintainer_rev);
185 $event->data['current']['plugin']['watchcycle']['changes'] = $changes;
298 * @return int number of changes since last maintainer's revision or -1 if no changes was made
302 $changes = 0;
309 return $changes;
317 $changes += 1;
321 return $changes;
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DAwsAuthV4.php62 $changes = ['set_headers' => ['host' => \rtrim($request->getHeader('host')[0], '.')]];
64 $request = Psr7\Utils::modifyRequest($request, $changes);
66 $request = Psr7\modify_request($request, $changes);
/plugin/vbsso/includes/
H A Dapi.php140 $changes = array();
143 $changes['mail'] = $json[SHAREDAPI_EVENT_FIELD_EMAIL2];
148 $changes['name'] = $json[SHAREDAPI_EVENT_FIELD_USERNAME2];
159 $changes['grps'] = array_unique($usergroups);
165 $auth->modifyUser($json[SHAREDAPI_EVENT_FIELD_USERNAME], $changes);

12345678910>>...19