HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
_flash.php
Go to the documentation of this file.
1  <div class="flashes">
2 
3  <?php if (Yii::app()->user->hasFlash('RightsSuccess') === true):?>
4 
5  <div class="flash success">
6 
7  <?php echo Yii::app()->user->getFlash('RightsSuccess'); ?>
8 
9  </div>
10 
11  <?php endif; ?>
12 
13  <?php if (Yii::app()->user->hasFlash('RightsError') === true):?>
14 
15  <div class="flash error">
16 
17  <?php echo Yii::app()->user->getFlash('RightsError'); ?>
18 
19  </div>
20 
21  <?php endif; ?>
22 
23  </div>