File: _menu.phtml

package info (click to toggle)
netbeans 7.0.1%2Bdfsg1-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 625,684 kB
  • sloc: java: 4,186,825; xml: 465,705; php: 38,485; cpp: 19,252; ansic: 13,667; jsp: 10,961; sh: 9,710; sql: 1,469; makefile: 991; haskell: 698; objc: 288; perl: 265; fortran: 262; yacc: 30; awk: 17; lex: 11; asm: 4
file content (32 lines) | stat: -rw-r--r-- 1,823 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php $this->placeholder('menu')->captureStart() ?>
<ul>
    <li class="m1"><a href="<?php echo $this->url(array('controller' => 'index', 'action' => 'index'), null, true) ?>" title=""><strong><span class="ml"></span><span class="mr"></span>Homepage</strong></a></li>
    
    <li class="modd"></li>
    <li class="m2 <?php if ($this->controller == "rent-estate")
    echo 'active'; ?>"><a href="<?php echo $this->url(array('controller' => 'sell-estate', 'action' => 'index'), null, true) ?>" title=""><strong><span class="ml"></span><span class="mr"></span>Offer</strong></a></li>
   
    <li class="modd"></li>
    <li class="m3 <?php if ($this->controller == 'exclusive-investment')
    echo 'active'; ?>"><a href="<?php echo $this->url(array('controller' => 'property', 'action' => 'add'), null, true) ?>" title=""><strong><span class="ml"></span><span class="mr"></span>Add new offer</strong></a></li>
    
    <li class="modd"></li>
    <li class="m4 <?php if ($this->controller == 'my-favorites') echo 'active'; ?>">
        <a href="<?php echo $this->url(array('controller' => 'my-favorites', 'action' => 'index'), null, true) ?>" title="">
            <strong>
                <span class="ml"></span>
                <span class="mr"></span>My Favorites
            </strong>
        </a>
    </li>
    <li class="modd"></li>
    <li class="m5 <?php
        if ($this->controller == 'about-us' ||
                $this->controller == 'information-for-buyers' ||
                $this->controller == 'available-positions')
            echo 'active';
?>">
        
<a href="<?php echo $this->url(array('controller' => 'contacts', 'action' => 'index'), null, true) ?>" title=""><strong><span class="ml"></span><span class="mr"></span>Contacts</strong></a></li>
</ul>
<?php $this->placeholder('menu')->captureEnd() ?>