-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdru_chat.module
67 lines (56 loc) · 1.31 KB
/
dru_chat.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* @file
* Contains dru_chat.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function dru_chat_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the dru_chat module.
case 'help.page.dru_chat':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Live, realtime chat for drupal') . '</p>';
return $output;
default:
}
}
/**
* Implements hook_install().
*/
function dru_chat_install($is_syncing) {
#$server = Drupal::service('dru_chat.server');
#$server->startSocketServer();
// TODO:: remove later
}
/**
* Implements hook_theme().
*/
function dru_chat_theme() {
return [
'dru_chat_block' => [
'variables' => [
'data' => NULL
],
'render element' => 'children',
'template' => 'dru-chat-block',
],
'dru_chat_messages' => [
'variables' => [
'data' => NULL
],
'render element' => 'children',
'template' => 'dru-chat-messages',
],
];
}
/**
* Implements hook_page_attachments().
*/
function dru_chat_page_attachments(array &$attachments){
//$current_user = Drupal::currentUser()->id();
//$attachments['#attached']['drupalSettings']['dru_chat']['user'] = $current_user;
}