index.php 532 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <div class="account-ds">
  11. <div class="bar bar-nav account-top-m">
  12. <h1 class='title'><?= Yii::$service->page->translate->__('My Account'); ?></h1>
  13. </div>
  14. <?php
  15. $leftMenu = [
  16. 'class' => 'fecshop\app\appfront\modules\Customer\block\LeftMenu',
  17. 'view' => 'customer/leftmenu.php'
  18. ];
  19. ?>
  20. <?= Yii::$service->page->widget->render($leftMenu,$this); ?>
  21. </div>