LiveChatBlock.php in Rocket.Chat 8.2
File
modules/livechat/src/Plugin/Block/LiveChatBlock.php
View source
<?php
namespace Drupal\livechat\Plugin\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\livechat\LivechatWidgetHandler;
class LiveChatBlock extends BlockBase {
public function build() {
$livechatWidget = new LivechatWidgetHandler('livechat', 'rocket_chat_conf');
$block = $livechatWidget
->renderWidgetWithJavaScriptKeys([
'server',
]);
$block['#cache'] = [
'max-age' => 0,
];
return $block;
}
public function defaultConfiguration() {
return [
'label_display' => FALSE,
];
}
}