Back.php 1.88 KB
<?php

use Action\AbstractAction;

class BackController extends AbstractAction
{
    /**
     * 找回密码
     */
    public function indexAction()
    {

        $simpleHeader = array(
            'logo' => array(
                'img' => 'http://static.yohobuy.com/newheader/img/logo_e.png',
                'url' => 'http://www.yohobuy.com'
            ),
            'tool' => array(
                array(
                    'title' => 'Hi~',
                    'loginUrl' => 'www.yoho.com',
                    'regUrl' => '' 
                ),
                array(
                    'title' => 'MY有货',
                    'options' => array(
                        array(
                            'textCn' => '我的收藏',
                            'url' => ''
                        ),
                        array(
                            'textCn' => '优惠券',
                            'url' => ''
                        ),
                    )
                ),
                array(
                    'title' => '订单中心',
                    'url' => 'http://www.yohobuy.com/home/orders?t=1449801433.5294'
                ),
                array(
                    'title' => '帮助中心',
                    'url' => 'http://www.yohobuy.com/help'
                ),
                array(
                    'title' => '400-9889-9646',
                    'tell' => true
                )
            )
        );
        $data = array(
            'simpleHeader' => $simpleHeader,
            'loginPage' => true,
            'back' => array(
                'coverHref' => '/passport',
                'coverImg' => 'http://img12.static.yhbimg.com/yhb-img01/2015/12/01/07/020a0b6e7ff908d0c2bc4045b4fef42b9f.png?imageView/2/w/252/h/190',
                'countrys' => array()
            )
        );
        $this->_view->display('index', $data);
    }
}