/plugin/elasticsearch/vendor/react/promise/src/ |
H A D | functions.php | 34 return new Promise(function ($resolve, $reject, $notify) use ($promiseOrValue) { 35 $promiseOrValue->then($resolve, $reject, $notify); 102 ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) { 112 ->done($resolve, $reject, $notify); 114 }, $reject, $notify); 218 ->done($fulfiller, $rejecter, $notify); 220 }, $reject, $notify); 266 $notify 269 }, $reject, $notify); 316 ->done($resolve, $reject, $notify); [all …]
|
H A D | Deferred.php | 21 $this->promise = new Promise(function ($resolve, $reject, $notify) { 24 $this->notifyCallback = $notify; 50 public function notify($update = null) function in React\\Promise\\Deferred 63 $this->notify($update);
|
H A D | Promise.php | 117 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/elasticsearch/vendor/react/promise/tests/PromiseTest/ |
H A D | NotifyTestTrait.php | 28 $adapter->notify($sentinel); 62 $adapter->notify($sentinel); 96 $adapter->notify(1); 130 $adapter->notify(1); 162 $adapter2->notify($sentinel); 193 $adapter2->notify($sentinel); 254 $adapter->notify(1); 280 $adapter->notify(1); 306 $adapter->notify(1); 321 $adapter->notify(1); [all …]
|
H A D | PromiseSettledTestTrait.php | 75 $adapter->notify();
|
/plugin/bez/mdl/ |
H A D | Thread_commentFactory.php | 33 $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 D | Task_commentFactory.php | 30 $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 D | admin.twig | 11 <div id="fl-notify-warning" class="notify"> 73 <div id="fl-notify-morepages" class="fl-notify notify">
|
/plugin/noiewarning/ |
H A D | ChangeLog | 25 * Added: notify mode (uses DokuWiki's notify() features)
|
/plugin/elasticsearch/vendor/react/promise/tests/PromiseAdapter/ |
H A D | PromiseAdapterInterface.php | 12 public function notify(); function
|
H A D | CallbackPromiseAdapter.php | 31 public function notify() function in React\\Promise\\PromiseAdapter\\CallbackPromiseAdapter
|
/plugin/tagalerts/ |
H A D | style.css | 54 background-image: url(images/notify.png); 78 background-image: url(../../images/notify.png);
|
/plugin/findologicxmlexport/vendor/hoa/exception/ |
H A D | Exception.php | 87 Event::notify(
|
/plugin/maintenancemessage/ |
H A D | INFO.txt | 7 desc Displays a maintenance message on all pages to notify of upcoming downtime, can also disable…
|
/plugin/findologicxmlexport/vendor/hoa/event/ |
H A D | Bucket.php | 86 return Event::notify($eventId, $source, $this);
|
H A D | Event.php | 229 public static function notify($eventId, Source $source, Bucket $data) function in Hoa\\Event\\Event
|
/plugin/guestbook/ |
H A D | basic.class.php | 11 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/openas/ |
H A D | style.css | 12 background-image: url(../../images/notify.png);
|
/plugin/elasticsearch/vendor/react/promise/tests/ |
H A D | PromiseTest.php | 185 $promise = new Promise(function () { }, function ($resolve, $reject, $notify) { 187 $notify(42);
|
/plugin/chat/ |
H A D | local.php.dist | 11 $conf['chat']['audio-notify'] = true; // use audio notification
|
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/ |
H A D | Event.php | 255 ->when($result = SUT::notify($eventId, $source, $bucket)) 272 SUT::notify($eventId, $source, $data);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
H A D | StreamHandler.php | 523 private function addNotification(array &$params, callable $notify) argument 527 $params['notification'] = $notify; 531 $notify
|
/plugin/linkback/exe/ |
H A D | trackback.php | 154 $this->tools->notify($ID, $linkback);
|
H A D | pingback.php | 129 $this->tools->notify($ID, $linkback);
|
/plugin/elasticsearch/vendor/react/promise/ |
H A D | README.md | 22 * [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($update)` - Deprecated function that issues progress events for the promise. [all …]
|