-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Up[dated side bar with Zend View Helper
- Loading branch information
1 parent
c4d715e
commit bbb4ac6
Showing
4 changed files
with
57 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,39 @@ | ||
<div class="col-md-3 left_col"> | ||
<div class="left_col scroll-view"> | ||
<div class="navbar nav_title" style="border: 0;"> | ||
<a href="/" class="site_title"><i class="fa fa-paw"></i> <span>Search Jobs</span></a> | ||
</div> | ||
|
||
<div class="clearfix"></div> | ||
<br/> | ||
|
||
<!-- sidebar menu --> | ||
<div id="sidebar-menu" class="main_menu_side hidden-print main_menu"> | ||
<div class="menu_section"> | ||
<ul class="nav side-menu"> | ||
<li> | ||
<a href="/">Home</a> | ||
</li> | ||
<li> | ||
<a href="<?php echo $this->basePath() . '/application/manual-search' ?>">Manual Search</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
<!-- /sidebar menu --> | ||
</div> | ||
</div> | ||
|
||
<?php | ||
|
||
$this->leftSideBar()->setItems([ | ||
[ | ||
'id' => 'home', | ||
'label' => 'Home', | ||
'link' => $this->url('home') | ||
], | ||
[ | ||
'id' => 'downloads', | ||
'label' => 'Downloads', | ||
'link' => $this->url("application", ['action' => 'downloads']) | ||
], | ||
[ | ||
'id' => 'support', | ||
'label' => 'Support', | ||
'dropdown' => [ | ||
[ | ||
'id' => 'documentation', | ||
'label' => 'Documentation', | ||
'link' => $this->url('application', ['page' => 'contents']) | ||
], | ||
[ | ||
'id' => 'help', | ||
'label' => 'Help', | ||
'link' => $this->url('application', ['page' => 'help']) | ||
] | ||
] | ||
'link' => $this->url('home'), | ||
'class' => 'active', | ||
], | ||
[ | ||
'id' => 'about', | ||
'label' => 'About', | ||
$this->url('home') | ||
'id' => 'manula-search', | ||
'label' => 'Manual Search', | ||
'link' => $this->url("application", ['action' => 'manual-search']) | ||
], | ||
// [ | ||
// 'id' => 'support', | ||
// 'label' => 'Support', | ||
// 'dropdown' => [ | ||
// [ | ||
// 'id' => 'documentation', | ||
// 'label' => 'Documentation', | ||
// 'link' => $this->url('application', ['page' => 'contents']) | ||
// ], | ||
// [ | ||
// 'id' => 'help', | ||
// 'label' => 'Help', | ||
// 'link' => $this->url('application', ['page' => 'help']) | ||
// ] | ||
// ] | ||
// ], | ||
// [ | ||
// 'id' => 'about', | ||
// 'label' => 'About', | ||
// $this->url('home') | ||
// ], | ||
]); | ||
|
||
//echo $this->leftSideBar()->render(); | ||
echo $this->leftSideBar()->render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters