1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <?php $corrects = Yii::$service->page->message->getCorrects(); ?>
- <?php $errors = Yii::$service->page->message->getErrors(); ?>
- <?php if((is_array($corrects) && !empty($corrects)) || (is_array($errors) && !empty($errors) )): ?>
- <div class="fecshop_message">
- <?php if(is_array($corrects) && !empty($corrects)): ?>
- <?php foreach($corrects as $one): ?>
- <div class="correct-msg">
- <div><?= Yii::$service->page->translate->__($one); ?></div>
- </div>
- <?php endforeach; ?>
- <?php endif; ?>
- <?php if(is_array($errors) && !empty($errors)): ?>
- <?php foreach($errors as $one): ?>
- <div class="error-msg">
- <div><?= Yii::$service->page->translate->__($one); ?></div>
- </div>
- <?php endforeach; ?>
- <?php endif; ?>
- </div>
- <?php endif; ?>
|