Home
last modified time | relevance | path

Searched refs:notify (Results 1 – 25 of 137) sorted by relevance

123456

/plugin/elasticsearch/vendor/react/promise/src/
H A Dfunctions.php34 return new Promise(function ($resolve, $reject, $notify) use ($promiseOrValue) {
35 $promiseOrValue->then($resolve, $reject, $notify);
100 return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $cancellationQueue) {
102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) {
112 ->done($resolve, $reject, $notify);
114 }, $reject, $notify);
163 return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $howMany, $cancellationQueue) {
165 ->done(function ($array) use ($howMany, $cancellationQueue, $resolve, $reject, $notify) {
218 ->done($fulfiller, $rejecter, $notify);
220 }, $reject, $notify);
[all...]
H A DDeferred.php21 $this->promise = new Promise(function ($resolve, $reject, $notify) {
24 $this->notifyCallback = $notify;
50 public function notify($update = null) function in React\\Promise\\Deferred
59 * @see Deferred::notify()
63 $this->notify($update);
H A DPromise.php117 return function ($resolve, $reject, $notify) use ($onFulfilled, $onRejected, $onProgress) {
119 $progressHandler = static function ($update) use ($notify, $onProgress) {
121 $notify($onProgress($update));
123 $notify($e);
125 $notify($e);
129 $progressHandler = $notify;
/plugin/bez/mdl/
H A DThread_commentFactory.php33 $notify = 'comment_added';
38 $notify = 'mail_thread_closed';
41 $notify = 'mail_thread_rejected';
44 $notify = 'mail_thread_reopened';
51 if ($notify == 'comment_added') {
53 } elseif (isset($notify)) {
54 $thread_comment->thread->mail_notify_change_state($notify);
H A DTask_commentFactory.php30 $notify = 'comment_added';
40 $notify = 'mail_task_done';
46 $notify = 'mail_task_repened';
56 if ($notify == 'comment_added') {
58 } elseif (isset($notify)) {
59 $task_comment->task->mail_notify_change_state($notify);
/plugin/findologicxmlexport/tpl/
H A Dadmin.twig11 <div id="fl-notify-warning" class="notify">
73 <div id="fl-notify-morepages" class="fl-notify notify">
/plugin/noiewarning/
H A DChangeLog25 * Added: notify mode (uses DokuWiki's notify() features)
/plugin/tagalerts/
H A Dstyle.css54 background-image: url(images/notify.png);
78 background-image: url(../../images/notify.png);
/plugin/structpublish/lang/en/
H A Dmail.txt3 This is to notify you that the status of the page “@PAGE@” has changed to @STATUS_CURRENT@.
/plugin/guestbook/
H A Dbasic.class.php11 var $notify = false; variable in guestbook_database
21 $this->notify = $parent->getConf('notify');
37 $this->notify = $this->parent->getConf('notify');
316 if ( $guestbook_database->notify && strstr($sql, 'INSERT') )
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DException.php87 Event::notify(
/plugin/structtasks/
H A Dcli.php35 $this->notify($options->getOpt('verbose'));
41 public function notify($verbose = true) { function in cli_plugin_structtasks
/plugin/maintenancemessage/
H A DINFO.txt7 desc Displays a maintenance message on all pages to notify of upcoming downtime, can also disable…
/plugin/findologicxmlexport/vendor/hoa/event/
H A DBucket.php86 return Event::notify($eventId, $source, $this);
H A DEvent.php229 public static function notify($eventId, Source $source, Bucket $data) function in Hoa\\Event\\Event
/plugin/openas/
H A Dstyle.css12 background-image: url(../../images/notify.png);
/plugin/chat/
H A Dlocal.php.dist11 $conf['chat']['audio-notify'] = true; // use audio notification
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DEvent.php255 ->when($result = SUT::notify($eventId, $source, $bucket))
272 SUT::notify($eventId, $source, $data);
/plugin/diagramsnet/lib/plugins/
H A Dreplay.js41 edit.notify = function() function
72 edit.notify();
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DStreamHandler.php523 private function addNotification(array &$params, callable $notify) argument
527 $params['notification'] = $notify;
531 $notify
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md22 * [Deferred::notify()](#deferrednotify)
100 $deferred->notify(mixed $update = null);
107 The deprecated `notify` method is for progress notification.
148 #### Deferred::notify()
153 $deferred->notify(mixed $update = null);
341 A cancellable promise provides a mechanism for consumers to notify the creator
370 $resolver = function (callable $resolve, callable $reject, callable $notify) {
372 // resolve or reject. You can notify of progress events (deprecated)
379 // or $notify($progressNotification);
402 * `$notify(
[all...]
/plugin/linkback/exe/
H A Dtrackback.php150 $this->tools->notify($ID, $linkback);
H A Dpingback.php133 $this->tools->notify($ID, $linkback);
/plugin/linkback/
H A Dtools.php63 * Sends a notify mail on new linkback
73 function notify($ID, $linkback) { function in tools_plugin_linkback
76 if (!$conf['notify'])
78 $to = $conf['notify'];
/plugin/editx/
H A Daction.php199 notify($id,'admin',$old,$summary);
200 notify($id,'subscribers',$old,$summary);

123456