Home
last modified time | relevance | path

Searched refs:notification (Results 1 – 25 of 90) sorted by relevance

1234

/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DNode.php37 protected $notification; variable in Sabre\\CalDAV\\Notifications\\Node
51 * @param NotificationInterface $notification
53 …V\Backend\NotificationSupport $caldavBackend, $principalUri, NotificationInterface $notification) { argument
57 $this->notification = $notification;
68 return $this->notification->getId() . '.xml';
81 return $this->notification->getETag();
93 return $this->notification;
104 $this->caldavBackend->deleteNotification($this->getOwner(), $this->notification);
H A DPlugin.php73 …g['\\Sabre\\CalDAV\\Notifications\\ICollection'] = '{' . self::NS_CALENDARSERVER . '}notification';
76 '{' . self::NS_CALENDARSERVER . '}notification-URL',
98 …$propFind->handle('{' . self::NS_CALENDARSERVER . '}notification-URL', function() use ($principalU…
/plugin/notification/action/
H A Dcron.php77 return array_key_exists('id', $notification);
96 foreach ($notifications as $notification) {
97 $plugin = $notification['plugin'];
98 $id = $notification['id'];
100 $new_notifications[] = $notification;
118 foreach ($new_notifications as $notification) {
119 $content = $notification['full'];
120 $timestamp = $notification['timestamp'];
137 foreach ($new_notifications as $notification) {
138 $plugin = $notification['plugin'];
[all …]
H A Dcache.php47 $notification = p_get_metadata($cache->page, 'plugin notification');
48 if(!$notification) return;
50 if ($notification['dynamic user']) {
56 'plugins' => $notification['plugins'],
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DNode.php35 protected $notification; variable in Sabre\\CalDAV\\Notifications\\Node
49 * @param NotificationInterface $notification
51 …V\Backend\NotificationSupport $caldavBackend, $principalUri, NotificationInterface $notification) { argument
55 $this->notification = $notification;
66 return $this->notification->getId() . '.xml';
79 return $this->notification->getETag();
91 return $this->notification;
102 $this->caldavBackend->deleteNotification($this->getOwner(), $this->notification);
H A DPlugin.php73 …g['\\Sabre\\CalDAV\\Notifications\\ICollection'] = '{' . self::NS_CALENDARSERVER . '}notification';
76 '{' . self::NS_CALENDARSERVER . '}notification-URL',
98 …$propFind->handle('{' . self::NS_CALENDARSERVER . '}notification-URL', function() use ($principalU…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Notification/
H A DInviteReplyTest.php14 function testSerializers($notification, $expected) { argument
16 $notification = new InviteReply($notification);
18 $this->assertEquals('foo', $notification->getId());
19 $this->assertEquals('"1"', $notification->getETag());
30 $writer->write($notification);
44 $notification->xmlSerializeFull($writer);
H A DSystemStatusTest.php14 function testSerializers($notification, $expected1, $expected2) { argument
16 $this->assertEquals('foo', $notification->getId());
17 $this->assertEquals('"1"', $notification->getETag());
26 $writer->write($notification);
38 $notification->xmlSerializeFull($writer);;
H A DInviteTest.php14 function testSerializers($notification, $expected) { argument
16 $notification = new Invite($notification);
18 $this->assertEquals('foo', $notification->getId());
19 $this->assertEquals('"1"', $notification->getETag());
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/Resource/
H A DNotifications.php37 * @param string $notification ID of the notification to delete.
43 public function delete($bucket, $notification, $optParams = []) argument
45 $params = ['bucket' => $bucket, 'notification' => $notification];
53 * @param string $notification Notification ID
60 public function get($bucket, $notification, $optParams = []) argument
62 $params = ['bucket' => $bucket, 'notification' => $notification];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseCloudMessaging/
H A DWebpushConfig.php35 public $notification; variable in Google\\Service\\FirebaseCloudMessaging\\WebpushConfig
82 public function setNotification($notification) argument
84 $this->notification = $notification;
91 return $this->notification;
H A DAndroidConfig.php110 public function setNotification(AndroidNotification $notification) argument
112 $this->notification = $notification;
119 return $this->notification;
H A DMessage.php140 public function setNotification(Notification $notification) argument
142 $this->notification = $notification;
149 return $this->notification;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidEnterprise/
H A DNotificationSet.php33 public function setNotification($notification) argument
35 $this->notification = $notification;
42 return $this->notification;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DNotifierSpec.php31 public function setNotification(Notification $notification) argument
33 $this->notification = $notification;
40 return $this->notification;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php114 private $notification; variable in phpseclib3\\Net\\SFTP\\Stream
177 $this->notification = $context['notification'];
221 if (isset($this->notification) && is_callable($this->notification)) {
231 …call_user_func($this->notification, STREAM_NOTIFY_CONNECT, STREAM_NOTIFY_SEVERITY_INFO, '', 0, 0, …
232 …call_user_func($this->notification, STREAM_NOTIFY_AUTH_REQUIRED, STREAM_NOTIFY_SEVERITY_INFO, '', …
319 if (isset($this->notification) && is_callable($this->notification)) {
321 …call_user_func($this->notification, STREAM_NOTIFY_FAILURE, STREAM_NOTIFY_SEVERITY_ERR, $this->sftp…
325 …call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, st…
352 if (isset($this->notification) && is_callable($this->notification)) {
354 …call_user_func($this->notification, STREAM_NOTIFY_FAILURE, STREAM_NOTIFY_SEVERITY_ERR, $this->sftp…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
H A DUsersettings.php62 public function setNotification(UsersettingsNotification $notification) argument
64 $this->notification = $notification;
71 return $this->notification;
/plugin/notification/
H A Dplugin.info.txt1 base notification
5 name notification plugin
7 url https://www.dokuwiki.org/plugin:notification
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Notifications/
H A DCollectionTest.php11 protected $notification; variable in Sabre\\CalDAV\\Notifications\\CollectionTest
17 $this->notification = new CalDAV\Xml\Notification\SystemStatus(1,'"1"');
21 $this->notification
35 new Node($this->caldavBackend, $this->principalUri, $this->notification)
H A DPluginTest.php100 $notification = new Node(
109 $this->plugin->propFind($propFind, $notification);
112 $notification->getNotificationType(),
120 $notification = new Node(
126 $server = new DAV\Server([$notification]);
/plugin/discordnotifier/examples/
H A DREADME.md7 ![Example created notification](https://github.com/zteeed/dokuwiki-discord-notifier/raw/master/exam…
11 ![Example updated notification](https://github.com/zteeed/dokuwiki-discord-notifier/raw/master/exam…
15 ![Example removed notification](https://github.com/zteeed/dokuwiki-discord-notifier/raw/master/exam…
/plugin/approve/action/
H A Dnotification.php64 foreach ($notifications as $notification) {
65 $page = $notification['page'];
66 $rev = $notification['rev'];
80 $full = sprintf($this->getLang('notification full'), $link);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Backend/
H A DNotificationSupport.php41 * @param NotificationInterface $notification
44 function deleteNotification($principalUri, NotificationInterface $notification); argument
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
H A DNotificationSupport.php41 * @param NotificationInterface $notification
44 function deleteNotification($principalUri, NotificationInterface $notification); argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMockSharing.php45 * @param NotificationInterface $notification
48 function deleteNotification($principalUri, NotificationInterface $notification) { argument
51 if ($notification === $value) {

1234