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 for($i=5; $i>=1; $i--):?>
4  <?php if (Yii::app()->user->hasFlash('success'.(string)$i) === true):?>
5 
6  <div class = 'flashH'>
7 
8  <div class="flash success">
9 
10  <?php echo Yii::app()->user->getFlash('success'.(string)$i); ?>
11 
12 
13  </div>
14 
15  </div>
16 
17  <?php endif; ?>
18 
19  <?php if (Yii::app()->user->hasFlash('error'.(string)$i) === true):?>
20 
21  <div class = 'flashH'>
22 
23  <div class="flash error">
24 
25  <?php echo Yii::app()->user->getFlash('error'.(string)$i); ?>
26 
27  </div>
28 
29  </div>
30 
31  <?php endif; ?>
32 
33  <?php if (Yii::app()->user->hasFlash('notification'.(string)$i) === true):?>
34 
35  <div class = 'flashH'>
36 
37  <div class="flash notification">
38 
39  <?php echo Yii::app()->user->getFlash('notification'.(string)$i); ?>
40 
41  </div>
42 
43  </div>
44 
45  <?php endif; ?>
46  <?php endfor; ?>
47 
48  <?php if (Yii::app()->user->hasFlash('success') === true):?>
49 
50  <div class = 'flashH'>
51 
52  <div class="flash success">
53 
54  <?php echo Yii::app()->user->getFlash('success'); ?>
55 
56  </div>
57 
58  </div>
59 
60  <?php endif; ?>
61 
62  <?php if (Yii::app()->user->hasFlash('error') === true):?>
63 
64  <div class = 'flashH'>
65 
66  <div class="flash error">
67 
68  <?php echo Yii::app()->user->getFlash('error'); ?>
69 
70  </div>
71 
72  </div>
73 
74  <?php endif; ?>
75 
76  <?php if (Yii::app()->user->hasFlash('notification') === true):?>
77 
78  <div class = 'flashH'>
79 
80  <div class="flash notification">
81 
82  <?php echo Yii::app()->user->getFlash('notification'); ?>
83 
84  </div>
85 
86  </div>
87  <?php endif; ?>
88 
89  </div>