Register.php 559 Bytes
<?php

use Action\AbstractAction;

class RegisterController extends AbstractAction
{
    /**
     * 登录页
     */
    public function indexAction()
    {
        $data = array(
            'loginPage' => true,
            'passport' => 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);
    }
}