#179 Make Items Kit icon visible on home page

Remove the if statement that was in the end preventing any module having a _ to be displayed in the home page.
This solution is consistent with navigation bar one.

Also done some indentation in header and footer to improve readibility.
This commit is contained in:
FrancescoUK
2015-09-28 13:12:22 +01:00
parent 319545b989
commit e49dd4e0b9
3 changed files with 48 additions and 46 deletions

View File

@@ -5,17 +5,14 @@
<?php
foreach($allowed_modules->result() as $module)
{
if (sizeof(explode('_', $module->module_id)) == 1)
{
?>
<div class="module_item">
<a href="<?php echo site_url("$module->module_id");?>">
<img src="<?php echo base_url().'images/menubar/'.$module->module_id.'.png';?>" border="0" alt="Menubar Image" /></a><br />
<a href="<?php echo site_url("$module->module_id");?>"><?php echo $this->lang->line("module_".$module->module_id) ?></a>
- <?php echo $this->lang->line('module_'.$module->module_id.'_desc');?>
</div>
<div class="module_item">
<a href="<?php echo site_url("$module->module_id");?>">
<img src="<?php echo base_url().'images/menubar/'.$module->module_id.'.png';?>" border="0" alt="Menubar Image" /></a><br />
<a href="<?php echo site_url("$module->module_id");?>"><?php echo $this->lang->line("module_".$module->module_id) ?></a>
- <?php echo $this->lang->line('module_'.$module->module_id.'_desc');?>
</div>
<?php
}
}
?>
</div>

View File

@@ -1,6 +1,12 @@
</div>
</div>
<div id="footer"> <?php echo $this->lang->line('common_you_are_using_ospos'); ?> <?php echo $this->config->item('application_version'); ?>.
<?php echo $this->lang->line('common_please_visit_my'); ?> <a href="https://github.com/jekkos/opensourcepos" target="_blank"><?php echo $this->lang->line('common_website'); ?></a> <?php echo $this->lang->line('common_learn_about_project'); ?>.</div>
</div>
</div>
<div id="footer">
<?php echo $this->lang->line('common_you_are_using_ospos'); ?>
<?php echo $this->config->item('application_version'); ?>.
<?php echo $this->lang->line('common_please_visit_my'); ?>
<a href="https://github.com/jekkos/opensourcepos" target="_blank"><?php echo $this->lang->line('common_website'); ?></a>
<?php echo $this->lang->line('common_learn_about_project'); ?>
</div>
</body>
</html>

View File

@@ -55,42 +55,41 @@ html {
}
</style>
</head>
<body>
<div id="menubar">
<div id="menubar_container">
<div id="menubar_company_info">
<span id="company_title"><?php echo $this->config->item('company'); ?></span><br />
<span style='font-size:8pt;'><?php echo $this->lang->line('common_powered_by').' Open Source Point Of Sale'; ?></span>
</div>
<div id="menubar_navigation">
<?php
foreach($allowed_modules->result() as $module)
{
?>
<div class="menu_item">
<a href="<?php echo site_url("$module->module_id");?>">
<img src="<?php echo base_url().'images/menubar/'.$module->module_id.'.png';?>" border="0" alt="Menubar Image"></a><br>
<a href="<?php echo site_url("$module->module_id");?>"><?php echo $this->lang->line("module_".$module->module_id) ?></a>
<div id="menubar">
<div id="menubar_container">
<div id="menubar_company_info">
<span id="company_title"><?php echo $this->config->item('company'); ?></span><br />
<span style='font-size:8pt;'><?php echo $this->lang->line('common_powered_by').' Open Source Point Of Sale'; ?></span>
</div>
<?php
}
?>
</div>
<div id="menubar_footer">
<?php echo $this->lang->line('common_welcome')." $user_info->first_name $user_info->last_name! | "; ?>
<a href="javascript:logout(true);"><?php echo $this->lang->line("common_logout"); ?></a>
</div>
<div id="menubar_date">
<?php echo date($this->config->item('dateformat').' '.$this->config->item('timeformat')) ?>
</div>
<div id="menubar_navigation">
<?php
foreach($allowed_modules->result() as $module)
{
?>
<div class="menu_item">
<a href="<?php echo site_url("$module->module_id");?>">
<img src="<?php echo base_url().'images/menubar/'.$module->module_id.'.png';?>" border="0" alt="Menubar Image"></a><br>
<a href="<?php echo site_url("$module->module_id");?>"><?php echo $this->lang->line("module_".$module->module_id) ?></a>
</div>
<?php
}
?>
</div>
<div id="menubar_footer">
<?php echo $this->lang->line('common_welcome')." $user_info->first_name $user_info->last_name! | "; ?>
<a href="javascript:logout(true);"><?php echo $this->lang->line("common_logout"); ?></a>
</div>
<div id="menubar_date">
<?php echo date($this->config->item('dateformat').' '.$this->config->item('timeformat')) ?>
</div>
</div>
</div>
</div>
<div id="content_area_wrapper">
<div id="content_area">
<div id="content_area_wrapper">
<div id="content_area">