Subversion Repositories SmartDukaan

Rev

Rev 22851 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
2
  <div class="container">
3
    <div class="navbar-header">
4
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
5
        <span class="sr-only">Toggle navigation</span>
6
        <span class="icon-bar"></span>
7
        <span class="icon-bar"></span>
8
        <span class="icon-bar"></span>
9
      </button>
13579 anikendra 10
      <a class="navbar-brand" href="<?php echo $base_url;?>">ProfitTill</a>
13532 anikendra 11
    </div>
12
    <div class="collapse navbar-collapse">
15188 anikendra 13
      <ul class="nav navbar-nav">      
13532 anikendra 14
        <li <?php if($this->params->controller == 'administration'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>administration/dashboard">Home</a></li>
13579 anikendra 15
        <li class="dropdown">
16
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Categories<span class="caret"></span></a>        
17
          <ul class="dropdown-menu" role="menu">
20323 aman.kumar 18
          <?php if(in_array('admin/categories',$this->Session->read('allowed_urls'))):?>
15188 anikendra 19
            <li <?php if($this->params->controller == 'categories'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/categories" title="Categories">All Categories</a></li>
20
          <?php endif;?>            
20323 aman.kumar 21
          <?php if(in_array('admin/brands',$this->Session->read('allowed_urls'))):?>
13758 anikendra 22
            <li <?php if($this->params->controller == 'brands'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/brands">Brands</a></li>
15188 anikendra 23
          <?php endif;?>            
20323 aman.kumar 24
          <?php if(in_array('admin/category_discounts',$this->Session->read('allowed_urls'))):?>
13758 anikendra 25
            <li <?php if($this->params->controller == 'categorie_discounts'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/category_discounts">Brand-wise Discounts</a></li>
15188 anikendra 26
          <?php endif;?>            
13579 anikendra 27
          </ul>
15188 anikendra 28
        </li>        
13637 anikendra 29
        <li class="dropdown">
14099 anikendra 30
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">NLC, Schemes &amp; DP<span class="caret"></span></a>        
13646 anikendra 31
          <ul class="dropdown-menu" role="menu">
20323 aman.kumar 32
          <?php if(in_array('admin/skuschemes',$this->Session->read('allowed_urls'))):?>
15193 anikendra 33
            <li <?php if($this->params->controller == 'skuschemes'  && $this->params->action == 'index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/skuschemes" title="Sku wise schemes">Sku wise schemes</a></li>
15188 anikendra 34
          <?php endif;?>            
20323 aman.kumar 35
          <?php if(in_array('admin/exceptionalnlcs',$this->Session->read('allowed_urls'))):?>
13646 anikendra 36
            <li <?php if($this->params->controller == 'exceptionalnlcs'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/exceptionalnlcs">Exceptional NLC</a></li>
15188 anikendra 37
          <?php endif;?>
20323 aman.kumar 38
          <?php if(in_array('admin/exceptionalskudiscounts',$this->Session->read('allowed_urls'))):?>
13646 anikendra 39
            <li <?php if($this->params->controller == 'exceptionalskudiscounts'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/exceptionalskudiscounts">Exceptional Sku discounts</a></li>
15188 anikendra 40
          <?php endif;?>
20323 aman.kumar 41
          <?php if(in_array('admin/skuschemes/dp',$this->Session->read('allowed_urls'))):?>
15193 anikendra 42
            <li <?php if($this->params->controller == 'skuschemes' && $this->params->action == 'dp'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/skuschemes/dp">Dealer Prices</a></li>
15188 anikendra 43
          <?php endif;?>
13646 anikendra 44
          </ul>
45
        </li>
15077 anikendra 46
        <li  class="dropdown">
47
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Catalog<span class="caret"></span></a>
15188 anikendra 48
          <ul class="dropdown-menu" role="menu">                 
20323 aman.kumar 49
          <?php if(in_array('admin/master_datas',$this->Session->read('allowed_urls'))):?>
15077 anikendra 50
            <li <?php if($this->params->controller == 'master_datas' && $this->params->action=='search'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/master_datas/search/?search=" title="Master Data">Master Data</a></li>        
15188 anikendra 51
          <?php endif;?>
20323 aman.kumar 52
          <?php if(in_array('admin/master_datas/autoupdates',$this->Session->read('allowed_urls'))):?>
15077 anikendra 53
            <li <?php if($this->params->controller == 'master_datas'  && $this->params->action=='autoupdates'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/master_datas/autoupdates" title="Master Data">Scheduled Auto-updates</a></li>        
15188 anikendra 54
          <?php endif;?>          
20323 aman.kumar 55
          <?php if(in_array('admin/paytm_coupons',$this->Session->read('allowed_urls'))):?>
16475 anikendra 56
            <li <?php if($this->params->controller == 'paytm_coupons'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/paytm_coupons" title="Paytm Coupons">Paytm Coupons</a></li>        
57
          <?php endif;?>          
20323 aman.kumar 58
          <?php if(in_array('admin/app_affiliates',$this->Session->read('allowed_urls'))):?>
16549 anikendra 59
            <li <?php if($this->params->controller == 'app_affiliates'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/app_affiliates" title="App Affiliates">App Affiliates</a></li>        
60
          <?php endif;?>          
20323 aman.kumar 61
          <?php if(in_array('admin/app_offers',$this->Session->read('allowed_urls'))):?>
16549 anikendra 62
            <li <?php if($this->params->controller == 'app_offers'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/app_offers" title="App Offers">App Offers</a></li>        
63
          <?php endif;?>
20323 aman.kumar 64
          <?php if(in_array('admin/appmasters',$this->Session->read('allowed_urls'))):?>
16614 anikendra 65
            <li <?php if($this->params->controller == 'appmasters'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/appmasters" title="AppMaster">App Master</a></li>        
66
          <?php endif;?>
17988 naman 67
 
20323 aman.kumar 68
          <?php if(in_array('admin/objects',$this->Session->read('allowed_urls'))):?>
17988 naman 69
            <li  <?php if($this->params->controller == 'objects'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/objects" title="Deal Object">Deal Object</a></li> 
70
          <?php endif;?>
19881 naman 71
 
20323 aman.kumar 72
          <?php if(in_array('admin/itemcashbacks',$this->Session->read('allowed_urls'))):?>
19881 naman 73
            <li  <?php if($this->params->controller == 'itemcashbacks'  && $this->params->action=='admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/itemcashbacks" title="Deal Object">Item Cashback</a></li> 
74
          <?php endif;?>
19773 naman 75
 
15077 anikendra 76
          </ul>
15188 anikendra 77
        </li>        
20323 aman.kumar 78
        <?php if(in_array('admin/stores',$this->Session->read('allowed_urls'))):?>
13532 anikendra 79
        <li <?php if($this->params->controller == 'stores'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/stores" title="Stores">Stores</a></li>
15188 anikendra 80
        <?php endif;?>          
20323 aman.kumar 81
        <?php if(in_array('orders/all',$this->Session->read('allowed_urls'))):?>
15188 anikendra 82
        <li <?php if($this->params->controller == 'orders'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>orders/all" title="Orders">Orders</a></li>
83
        <?php endif;?>          
14410 anikendra 84
        <li  class="dropdown">
85
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Users<span class="caret"></span></a>
15188 anikendra 86
          <ul class="dropdown-menu" role="menu">                   
20323 aman.kumar 87
          <?php if(in_array('admin/users',$this->Session->read('allowed_urls'))):?>
14410 anikendra 88
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users" title="Users">Users</a></li>
15188 anikendra 89
          <?php endif;?>
20323 aman.kumar 90
          <?php if(in_array('admin/users/search',$this->Session->read('allowed_urls'))):?>
15218 anikendra 91
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'admin_search'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/search" title="Search Users">Search Users</a></li>
92
          <?php endif;?>
20323 aman.kumar 93
          <?php if(in_array('admin/reports/activations',$this->Session->read('allowed_urls'))):?>
15382 anikendra 94
            <li <?php if($this->params->controller == 'reports' && $this->params->action == 'admin_activations'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/activations" title="Activations">Activations</a></li>
95
          <?php endif;?>
20323 aman.kumar 96
           <?php if(in_array('admin/users/usersanctions',$this->Session->read('allowed_urls'))):?>
18768 manish.sha 97
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'admin_usersanctions'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/usersanctions" title="User Sanctions">User Sanctions</a></li>
98
          <?php endif;?>
20323 aman.kumar 99
          <?php if(in_array('admin/user_urls',$this->Session->read('allowed_urls'))):?>
14434 anikendra 100
            <li <?php if($this->params->controller == 'user_urls' && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/user_urls/" title="Browsing History">Browsing History</a></li>
15188 anikendra 101
          <?php endif;?>
20323 aman.kumar 102
          <?php if(in_array('admin/clicks',$this->Session->read('allowed_urls'))):?>
14734 anikendra 103
            <li <?php if($this->params->controller == 'clicks' && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/clicks/" title="Click History">Click History</a></li>
15188 anikendra 104
          <?php endif;?>
20323 aman.kumar 105
          <?php if(in_array('admin/users/credithistory',$this->Session->read('allowed_urls'))):?>
18810 manish.sha 106
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'admin_credithistory'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/credithistory" title="Credit History">Credit History</a></li>
107
          <?php endif;?>
20323 aman.kumar 108
          <?php if(in_array('admin/users/loanhistory',$this->Session->read('allowed_urls'))):?>
18810 manish.sha 109
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'admin_loanhistory'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/loanhistory" title="Loan History">Loan History</a></li>
110
          <?php endif;?>
20323 aman.kumar 111
          <?php if(in_array('admin/users/pushnotifications',$this->Session->read('allowed_urls'))):?>
14410 anikendra 112
            <li <?php if($this->params->controller == 'users'  && $this->params->action == 'admin_pushnotifications'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/pushnotifications" title="Push Notifications">Push Notifications</a></li>
15188 anikendra 113
          <?php endif;?>
20323 aman.kumar 114
          <?php if(in_array('admin/notification_campaigns/send',$this->Session->read('allowed_urls'))):?>
15264 anikendra 115
            <li <?php if($this->params->controller == 'notification_campaigns'  && $this->params->action == 'admin_send'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/notification_campaigns/send" title="Queue Push Notifications">Queue Push Notifications</a></li>
116
          <?php endif;?>
20323 aman.kumar 117
          <?php if(in_array('admin/notification_rules',$this->Session->read('allowed_urls'))):?>
14579 anikendra 118
            <li <?php if($this->params->controller == 'notification_rules'  && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/notification_rules" title="Web Notification Rules">Web Notification Rules</a></li>
15188 anikendra 119
          <?php endif;?>
20323 aman.kumar 120
          <?php if(in_array('admin/activation_codes',$this->Session->read('allowed_urls'))):?>
14768 anikendra 121
            <li <?php if($this->params->controller == 'activation_codes'  && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/activation_codes" title="Activation Codes">Activation Codes</a></li>
15188 anikendra 122
          <?php endif;?>
20323 aman.kumar 123
          <?php if(in_array('admin/notification_campaigns',$this->Session->read('allowed_urls'))):?>
14989 manas 124
            <li <?php if($this->params->controller == 'notifications_campaigns'  && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/notification_campaigns" title="Notifications Analytics">Notifications Analytics</a></li>
19053 naman 125
          <?php endif;?>  
20323 aman.kumar 126
          <?php if(in_array('admin/notification_campaigns/batchcredit',$this->Session->read('allowed_urls'))):?>
19053 naman 127
            <li <?php if($this->params->controller == 'notifications_campaigns'  && $this->params->action == 'admin_batchcredit'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/notification_campaigns/batchcredit" title="Batch Credit">Batch Credit</a></li>
128
          <?php endif;?>        
20323 aman.kumar 129
          <?php if(in_array('admin/callhistories',$this->Session->read('allowed_urls'))):?>
15232 anikendra 130
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'callhistories'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/callhistories" title="Disposition">Disposition</a></li>
15219 manas 131
          <?php endif;?>
20323 aman.kumar 132
          <?php if(in_array('admin/userActivityStatuses',$this->Session->read('allowed_urls'))):?>
15752 manas 133
            <li <?php if($this->params->controller == 'userActivityStatuses' && $this->params->action == 'userActivityStatuses'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/userActivityStatuses" title="User Activity">User Activity</a></li>
134
          <?php endif;?>
20323 aman.kumar 135
          <?php if(in_array('admin/callhistories/backlog',$this->Session->read('allowed_urls'))):?>
17984 manas 136
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'callhistories'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/callhistories/backlog" title="Back Log">Back Log</a></li>
137
          <?php endif;?>  
19773 naman 138
 
20323 aman.kumar 139
           <?php if(in_array('admin/users/userretailer',$this->Session->read('allowed_urls'))):?>
19773 naman 140
            <li <?php if($this->params->controller == 'users' && $this->params->action == 'userretailer'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/users/userretailer" title="Search User & Retailer">Search User & Retailer</a></li>
141
          <?php endif;?>
15752 manas 142
 
14410 anikendra 143
          </ul>
144
        </li>
15901 anikendra 145
        <li class="dropdown">
146
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Reports <span class="caret"></span></a>
147
          <ul class="dropdown-menu" role="menu">  
20323 aman.kumar 148
            <?php if(in_array('admin/search_terms',$this->Session->read('allowed_urls'))):?>
15901 anikendra 149
              <li <?php if($this->params->controller == 'search_terms'  && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/search_terms" title="Search Terms">Search Terms</a></li>
150
            <?php endif;?>
20323 aman.kumar 151
            <?php if(in_array('admin/user_filters',$this->Session->read('allowed_urls'))):?>
15901 anikendra 152
              <li <?php if($this->params->controller == 'user_filters'  && $this->params->action == 'admin_index'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/user_filters" title="Filter Terms">Brand Filters</a></li>
153
            <?php endif;?>          
20323 aman.kumar 154
            <?php if(in_array('admin/reports/brandpreferences_report',$this->Session->read('allowed_urls'))):?>
15901 anikendra 155
              <li <?php if($this->params->controller == 'reports' && $this->params->action == 'brandpreferences_report'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/brandpreferences_report" title="Brand Preferences Report">Brand Preferences Report</a></li>
156
            <?php endif;?>
20323 aman.kumar 157
            <?php if(in_array('admin/reports/brandfilters_report',$this->Session->read('allowed_urls'))):?>
15901 anikendra 158
              <li <?php if($this->params->controller == 'reports' && $this->params->action == 'brandfilters_report'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/brandfilters_report" title="Brand Filters Report">Brand Filters Report</a></li>
159
            <?php endif;?>
20323 aman.kumar 160
            <?php if(in_array('admin/reports/dailyupgrades_report',$this->Session->read('allowed_urls'))):?>
15901 anikendra 161
              <li <?php if($this->params->controller == 'reports' && $this->params->action == 'dailyupgrades_report'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/dailyupgrades_report" title="Daily Upgrades Report">Device Upgrades Report</a></li>
162
            <?php endif;?>
20323 aman.kumar 163
             <?php if(in_array('admin/reports/clicks_report',$this->Session->read('allowed_urls'))):?>
15901 anikendra 164
              <li <?php if($this->params->controller == 'reports' && $this->params->action == 'clicks_report'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/clicks_report" title="Clicks Report">Clicks Report</a></li>
165
            <?php endif;?>          
20323 aman.kumar 166
            <?php if(in_array('admin/reports/productviews_report',$this->Session->read('allowed_urls'))):?>
15901 anikendra 167
            <li><a href="<?php echo $base_url;?>admin/reports/productviews_report">Product Views Report</a></li>
168
            <?php endif;?>
20323 aman.kumar 169
            <?php if(in_array('admin/appTransactions/transactions_all',$this->Session->read('allowed_urls'))):?>
16955 manas 170
            <li><a href="<?php echo $base_url;?>admin/appTransactions/transactions_all">App Transactions All</a></li>
171
            <?php endif;?>
20323 aman.kumar 172
            <?php if(in_array('admin/appTransactions',$this->Session->read('allowed_urls'))):?>
16955 manas 173
            <li><a href="<?php echo $base_url;?>admin/appTransactions">App Transactions Approved</a></li>
16873 manas 174
            <?php endif;?>
20323 aman.kumar 175
            <?php if(in_array('admin/appTransactions/retailer',$this->Session->read('allowed_urls'))):?>
16873 manas 176
            <li><a href="<?php echo $base_url;?>admin/appTransactions/retailer">App Transactions Retailer Wise</a></li>
177
            <?php endif;?>
20323 aman.kumar 178
            <?php if(in_array('admin/appTransactions/appwise',$this->Session->read('allowed_urls'))):?>
16873 manas 179
            <li><a href="<?php echo $base_url;?>admin/appTransactions/appwise">App Transactions App Wise</a></li>
180
            <?php endif;?>
20323 aman.kumar 181
            <?php if(in_array('admin/appTransactions/pricewise',$this->Session->read('allowed_urls'))):?>
16943 manas 182
            <li><a href="<?php echo $base_url;?>admin/appTransactions/pricewise">App Offer Price and Payout Amount</a></li>
183
            <?php endif;?>
20323 aman.kumar 184
            <?php if(in_array('admin/reports/pendingapproval',$this->Session->read('allowed_urls'))):?>
19458 naman 185
              <li <?php if($this->params->controller == 'reports'  && $this->params->action == 'admin_pendingapproval'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/pendingapproval" title="Pending Refunds">Pending Refunds</a></li>
186
            <?php endif;?>
19531 manas 187
 
20323 aman.kumar 188
            <?php if(in_array('admin/retailers/pendingretailer',$this->Session->read('allowed_urls'))):?>
19773 naman 189
              <li <?php if($this->params->controller == 'retailers'  && $this->params->action == 'admin_pendingretailer'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/retailers/pendingretailer" title="Pending Retailers">Pending Retailers</a></li>
190
            <?php endif;?>
191
 
20323 aman.kumar 192
            <?php if(in_array('admin/retailers/verifiedretailer',$this->Session->read('allowed_urls'))):?>
19773 naman 193
              <li <?php if($this->params->controller == 'retailers'  && $this->params->action == 'admin_verifiedretailer'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/retailers/verifiedretailer" title="Verified Retailers">Verified Retailers</a></li>
194
            <?php endif;?>
19849 naman 195
 
20323 aman.kumar 196
            <?php if(in_array('admin/retailers/filterretailer' , $this->Session->read('allowed_urls'))):?>
19849 naman 197
              <li <?php if($this->params->controller == 'retailers' && $this->params->action == 'admin_filterretailer'):?> class="active" <?php endif;?>><a href="<?php echo $base_url;?>admin/retailers/filterretailer" title="Filter Retailers">Filter Retailers</a></li>
198
            <?php endif;?>
19773 naman 199
 
22851 amit.gupta 200
            <?php if(in_array('admin/retailers/pendingretailer_new' , $this->Session->read('allowed_urls'))):?>
22852 amit.gupta 201
              <li <?php if($this->params->controller == 'retailers' && $this->params->action == 'admin_filterretailer'):?> class="active" <?php endif;?>><a href="<?php echo $base_url;?>admin/retailers/pendingretailer_new" title="Filter Retailers">New Retailers</a></li>
22851 amit.gupta 202
            <?php endif;?>
203
 
20323 aman.kumar 204
            <?php if(in_array('admin/reports/allstatus',$this->Session->read('allowed_urls'))):?>
19531 manas 205
              <li <?php if($this->params->controller == 'reports'  && $this->params->action == 'admin_allstatus'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/reports/allstatus" title="Refunds Report for All Statuses">Refunds Report for All Statuses</a></li>
206
            <?php endif;?>
207
 
15901 anikendra 208
          </ul>
209
        </li>
20323 aman.kumar 210
        <?php if(in_array('admin/campaigns',$this->Session->read('allowed_urls'))):?>
14579 anikendra 211
        <li <?php if($this->params->controller == 'campaigns'):?>class="active"<?php endif;?>><a href="<?php echo $base_url;?>admin/campaigns" title="Banners">Banners</a></li>
15188 anikendra 212
        <?php endif;?>          
13532 anikendra 213
        <li class="dropdown">
14509 anikendra 214
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Deal Configuration <span class="caret"></span></a>
15188 anikendra 215
          <ul class="dropdown-menu" role="menu">            
20323 aman.kumar 216
          <?php if(in_array('admin/negative_deals',$this->Session->read('allowed_urls'))):?>
15232 anikendra 217
            <li><a href="<?php echo $base_url;?>admin/negative_deals">Negative Deals</a></li>
15188 anikendra 218
          <?php endif;?>
20323 aman.kumar 219
          <?php if(in_array('admin/manual_deals',$this->Session->read('allowed_urls'))):?>
15232 anikendra 220
            <li><a href="<?php echo $base_url;?>admin/manual_deals">Manual Deals</a></li>
15188 anikendra 221
          <?php endif;?>
20323 aman.kumar 222
          <?php if(in_array('admin/featured_deals',$this->Session->read('allowed_urls'))):?>
15232 anikendra 223
            <li><a href="<?php echo $base_url;?>admin/featured_deals">Featured Deals</a></li>
15188 anikendra 224
          <?php endif;?>          
20323 aman.kumar 225
          <?php if(in_array('admin/manual_deals/dealpoints',$this->Session->read('allowed_urls'))):?>
16493 anikendra 226
            <li><a href="<?php echo $base_url;?>admin/manual_deals/dealpoints">Deal Points</a></li>
227
          <?php endif;?>
17634 naman 228
 
20323 aman.kumar 229
            <?php if(in_array('admin/dealobjects',$this->Session->read('allowed_urls'))):?>
17988 naman 230
                <li><a href="<?php echo $base_url;?>admin/dealobjects" title="Feature Deal Object">Feature Deal Object</a></li> 
231
            <?php endif;?>
17634 naman 232
 
233
 
14509 anikendra 234
          </ul>
235
        </li>
236
        <li class="dropdown">
13532 anikendra 237
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <span class="caret"></span></a>
15188 anikendra 238
          <ul class="dropdown-menu" role="menu">            
20323 aman.kumar 239
          <?php if(in_array('admin/mobileappsettings',$this->Session->read('allowed_urls'))):?>
15232 anikendra 240
            <li><a href="<?php echo $base_url;?>admin/mobileappsettings">Mobile Settings</li>
15188 anikendra 241
          <?php endif;?>
20323 aman.kumar 242
          <?php if(in_array('admin/acls',$this->Session->read('allowed_urls'))):?>
15232 anikendra 243
            <li><a href="<?php echo $base_url;?>admin/acls">ACL</li>
15188 anikendra 244
          <?php endif;?>          
20323 aman.kumar 245
          <?php if(in_array('admin/paytm_callings',$this->Session->read('allowed_urls'))):?>
16475 anikendra 246
            <li><a href="<?php echo $base_url;?>admin/paytm_callings">Paytm Calling</li>
247
          <?php endif;?>
13532 anikendra 248
            <li class="divider"></li>
249
            <li><a href="<?php echo $base_url;?>users/logout">Logout</a></li>
250
          </ul>
251
        </li>
252
      </ul>
253
    </div><!--/.nav-collapse -->
254
  </div>
255
</div>
13579 anikendra 256
<div id="push"></div>
13532 anikendra 257
<script>
258
$(document).ready(function(){
259
 
260
});
261
</script>
21040 amit.gupta 262
<script src="/js/bootstrap.min.js"></script>