File "header.php"
Full path: /home/cakedeco/retaildirectonline.co.uk/install/controller/common/header.php
File
size: 490 B (490 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
<?php
class ControllerCommonHeader extends Controller {
public function index() {
$this->load->language('common/header');
$data['title'] = $this->document->getTitle();
$data['description'] = $this->document->getDescription();
$data['links'] = $this->document->getLinks();
$data['styles'] = $this->document->getStyles();
$data['scripts'] = $this->document->getScripts();
$data['base'] = HTTP_SERVER;
return $this->load->view('common/header', $data);
}
}