Odyssey
hcuPermNotice.prg
1 <?php
2  /**
3  * Generic script for displaying permission notices
4  */
5 
6  $serviceShowInfo = true;
7  $serviceLoadMenu = true;
8  $serviceShowMenu = true;
9  $serviceLiveCheck = true;
10 
11  require_once(dirname(__FILE__) . '/../library/hcuService.i');
12 
13 
14  require_once('hcuPreContent.i');
15 ?>
16  <div class="col-xs-12 col-md-8 col-lg-6">
17  <div class="k-block k-info-colored hcu-info-margin">
18  <div class="k-shadow k-header">
19  <span><?php echo $MC->msg('Feature Unavailable', HCU_DISPLAY_AS_HTML); ?></span>
20  </div>
21 
22  <div class="hcu-info-padding">
23  <span><?php echo $MC->msg('Rights not set', HCU_DISPLAY_AS_HTML); ?></span>
24  </div>
25  </div>
26  </div>
27 <?php
28  require_once('hcuPostContent.i');