File "google_hangouts.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/catalog/controller/extension/module/google_hangouts.php
File
size: 517 B (517 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
class ControllerExtensionModuleGoogleHangouts extends Controller {
public function index() {
$this->load->language('extension/module/google_hangouts');
if ($this->request->server['HTTPS']) {
$data['code'] = str_replace('http', 'https', html_entity_decode($this->config->get('module_google_hangouts_code')));
} else {
$data['code'] = html_entity_decode($this->config->get('module_google_hangouts_code'));
}
return $this->load->view('extension/module/google_hangouts', $data);
}
}