app/views/admin/backups.php 1 location
|
@@ 67-71 (lines=5) @@
|
| 64 |
|
</tbody> |
| 65 |
|
</table> |
| 66 |
|
<?php |
| 67 |
|
if(!empty(Session::get('backup-errors'))){ |
| 68 |
|
echo $this->renderErrors(Session::getAndDestroy('backup-errors')); |
| 69 |
|
}else if(!empty(Session::get('backup-success'))){ |
| 70 |
|
echo $this->renderSuccess(Session::getAndDestroy('backup-success')); |
| 71 |
|
} |
| 72 |
|
?> |
| 73 |
|
</div> |
| 74 |
|
<!-- /.table-responsive --> |
app/views/todo/index.php 1 location
|
@@ 26-30 (lines=5) @@
|
| 23 |
|
<?php |
| 24 |
|
|
| 25 |
|
// display success or error messages in session |
| 26 |
|
if(!empty(Session::get('success'))){ |
| 27 |
|
echo $this->renderSuccess(Session::getAndDestroy('success')); |
| 28 |
|
}else if(!empty(Session::get('errors'))){ |
| 29 |
|
echo $this->renderErrors(Session::getAndDestroy('errors')); |
| 30 |
|
} |
| 31 |
|
|
| 32 |
|
?> |
| 33 |
|
|
app/views/user/profile.php 1 location
|
@@ 59-63 (lines=5) @@
|
| 56 |
|
</form> |
| 57 |
|
|
| 58 |
|
<?php |
| 59 |
|
if(!empty(Session::get('profile-info-errors'))){ |
| 60 |
|
echo $this->renderErrors(Session::getAndDestroy('profile-info-errors')); |
| 61 |
|
}else if(!empty(Session::get('profile-info-success'))){ |
| 62 |
|
echo $this->renderSuccess(Session::getAndDestroy('profile-info-success')); |
| 63 |
|
} |
| 64 |
|
?> |
| 65 |
|
|
| 66 |
|
<?php if(!empty($emailUpdates["success"])):?> |