151 lines
5.7 KiB
PHP
Executable file
151 lines
5.7 KiB
PHP
Executable file
<? /* Quotenik 1.2 - Default Layout. Some Markup from CakePHP Default */?>
|
|
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<?php echo $html->charset(); ?>
|
|
<title>
|
|
<?php __('CMC'); ?>
|
|
<?php echo $title_for_layout; ?>
|
|
</title>
|
|
<? echo $html->meta('icon'); ?>
|
|
<?php
|
|
echo $html->css('quotenik');
|
|
echo $html->css('jquery-ui.custom.css');
|
|
|
|
//echo $javascript->link('prototype');
|
|
//echo $javascript->link('scriptaculous');
|
|
echo $javascript->link('ckeditor/ckeditor');
|
|
//echo $javascript->link('validation');
|
|
|
|
|
|
echo $javascript->link('jquery');
|
|
|
|
echo $javascript->link('jquery-ui');
|
|
|
|
echo $scripts_for_layout;
|
|
|
|
|
|
?>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<h3 id="logo">CMC Technologies</h3>
|
|
|
|
<div id="username">
|
|
|
|
<?php
|
|
if(isset($currentuser) == FALSE) {
|
|
echo $html->link('Login', '/users/login');
|
|
}
|
|
else {
|
|
$logoutlink = $html->link('Logout', '/users/logout');
|
|
echo "Logged in as: ". $html->link($currentuser['User']['username'], '/users/view/'. $currentuser['User']['id']). ' (' . $logoutlink.')';
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
<div id = "nav">
|
|
<ul id="nav">
|
|
<li><h3><?php echo $html->link('Enquiries', '/enquiries/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Enquiry Register', '/enquiries/index'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Customers', '/customers/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Customer Index', '/customers/index'); ?></li>
|
|
<li><?php echo $html->link('Find Customer', '/customers/find'); ?></li>
|
|
<li><?php echo $html->link('Add Customer', '/customers/add'); ?></li>
|
|
<li><?php echo $html->link('Industries', '/industries/index'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Contacts', '/contacts/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Contact Index', '/contacts/index'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Products', '/products/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Product Index', '/products/index'); ?></li>
|
|
<li><?php echo $html->link('Add Product', '/products/add'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Quotes', '/quotes/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Quote Index', '/quotes/index'); ?></li>
|
|
<li><?php echo $html->link('Find Quote', '/quotes/find'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Principles', '/principles/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Principle Index', '/principles/index'); ?></li>
|
|
<li><?php echo $html->link('Add Principle', '/principles/add'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li><h3><?php echo $html->link('Users', '/users/index'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('Users Index', '/users/index'); ?></li>
|
|
<li><?php echo $html->link('Add User', '/users/add'); ?></li>
|
|
</ul>
|
|
</li>
|
|
<li><h3><?php echo $html->link('Help', '/pages/help'); ?></h3>
|
|
<ul>
|
|
<li><?php echo $html->link('About', '/pages/about'); ?></li>
|
|
</ul>
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<div id="content">
|
|
<?php
|
|
if ($session->check('Message.flash')):
|
|
$session->flash();
|
|
endif;
|
|
?>
|
|
|
|
<?php echo $content_for_layout; ?>
|
|
|
|
</div>
|
|
<div id="footer">
|
|
<?php echo $html->link(
|
|
$html->image('cake.power.gif', array('alt'=> __("CakePHP: the rapid development php framework", true), 'border'=>"0")),
|
|
'http://www.cakephp.org/',
|
|
array('target'=>'_new'), null, false
|
|
);
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
$mem_usage = memory_get_usage(true);
|
|
|
|
if ($mem_usage < 1024)
|
|
echo $mem_usage." bytes";
|
|
elseif ($mem_usage < 1048576)
|
|
echo round($mem_usage/1024,2)." kilobytes";
|
|
else
|
|
echo round($mem_usage/1048576,2)." megabytes";
|
|
echo "<br/>";
|
|
|
|
?>
|
|
|
|
<?php echo $cakeDebug; ?>
|
|
|
|
</body>
|
|
</html>
|