Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-01-23 11:05:45 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-03-25 18:16:45 +0300
commit5a33cb0b78538e24b2753ef09f760f7b23408f29 (patch)
tree599b532e51eccb8c18315ca4913cba98aa211be6 /apps/contactsinteraction/lib/AppInfo
parentb3e194f38ecf2ec11aa5228937c4d6bdda28d5f0 (diff)
Register an address book with recent contacts
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/contactsinteraction/lib/AppInfo')
-rw-r--r--apps/contactsinteraction/lib/AppInfo/Application.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/apps/contactsinteraction/lib/AppInfo/Application.php b/apps/contactsinteraction/lib/AppInfo/Application.php
new file mode 100644
index 00000000000..674034cbe48
--- /dev/null
+++ b/apps/contactsinteraction/lib/AppInfo/Application.php
@@ -0,0 +1,52 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+namespace OCA\ContactsInteraction\AppInfo;
+
+use OCA\ContactsInteraction\AddressBook;
+use OCA\ContactsInteraction\Listeners\ContactInteractionListener;
+use OCA\ContactsInteraction\Store;
+use OCP\AppFramework\App;
+use OCP\AppFramework\IAppContainer;
+use OCP\Contacts\Events\ContactInteractedWithEvent;
+use OCP\EventDispatcher\IEventDispatcher;
+use OCP\EventDispatcher\IEventListener;
+use OCP\IL10N;
+
+class Application extends App {
+
+ public const APP_ID = 'contactsinteraction';
+
+ public function __construct() {
+ parent::__construct(self::APP_ID);
+
+ $this->registerListeners($this->getContainer()->query(IEventDispatcher::class));
+ }
+
+ private function registerListeners(IEventDispatcher $dispatcher): void {
+ $dispatcher->addServiceListener(ContactInteractedWithEvent::class, ContactInteractionListener::class);
+ }
+
+}