Skip to content
Snippets Groups Projects
Commit 09676094 authored by Dewita Sonya Tarabunga's avatar Dewita Sonya Tarabunga
Browse files

Add search email

parent 91bae3bf
Branches
1 merge request!2Message System
......@@ -3,5 +3,25 @@ namespace Magento\Messaging\Block;
class Room extends \Magento\Framework\View\Element\Template
{
/**
* @var \Magento\Framework\App\ObjectManager
*/
public $om;
/**
* @var \Magento\Customer\Model\Session
*/
public $session;
public function getEmail() {
if ($om === null || $session === null) {
$om = \Magento\Framework\App\ObjectManager::getInstance();
$session = $om->get('\Magento\Customer\Model\Session');
}
if ($session->isLoggedIn()) {
return $session->getCustomer()->getEmail();
} else {
return "Kosong";
}
}
}
\ No newline at end of file
<div class="box">
<div class = "chat-title">
<span class="name">Person 1 Name</span>
<span class="name"></span>
</div>
<div class="chat-form" >
<div id="chatbox" class="chat-box">
......@@ -16,6 +16,7 @@
</div>
</div>
<script>
console.log(<?php $this->getEmail() ?>);
var myFirebase = new Firebase('https://magentochat.firebaseio.com/');
require(['jquery'], function($) {
$(document).ready(function() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment