添加新模块
This commit is contained in:
parent
ab9c5da415
commit
192f2a6ddf
|
@ -1,210 +1,135 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
return array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
//home
|
||||
'home' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
//'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/',
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Index',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'default' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '[:controller[/:action][/]]',
|
||||
'constraints' => array(
|
||||
'module' => 'Application',
|
||||
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
|
||||
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'action' => 'index',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//default
|
||||
'about' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
'options' => array(
|
||||
'route' => 'about',
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Index',
|
||||
'action' => 'about',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),//home
|
||||
|
||||
//login
|
||||
'login' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
'options' => array(
|
||||
'route' => '/account/login',
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Account',
|
||||
'action' => 'login',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
),
|
||||
|
||||
//service
|
||||
'service' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/service[/:action]',
|
||||
'constraints' => array(
|
||||
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Service',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//service
|
||||
|
||||
|
||||
//search
|
||||
'search' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/search[/page/:page]',
|
||||
'constraints' => array(
|
||||
'page' => '[a-zA-Z0-9][a-zA-Z0-9_-]*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Search',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//search
|
||||
|
||||
//about
|
||||
'about' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/about[/:id]',
|
||||
'constraints' => array(
|
||||
'id' => '.*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Index',
|
||||
'action' => 'about',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//default
|
||||
|
||||
),
|
||||
),
|
||||
'service_manager' => array(
|
||||
'abstract_factories' => array(
|
||||
'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
|
||||
'Zend\Log\LoggerAbstractServiceFactory',
|
||||
),
|
||||
'aliases' => array(
|
||||
'translator' => 'MvcTranslator',
|
||||
),
|
||||
),
|
||||
'translator' => array(
|
||||
'locale' => 'en_US',
|
||||
'translation_file_patterns' => array(
|
||||
array(
|
||||
'type' => 'gettext',
|
||||
'base_dir' => __DIR__ . '/../language',
|
||||
'pattern' => '%s.mo',
|
||||
),
|
||||
),
|
||||
),
|
||||
'controllers' => array(
|
||||
'invokables' => array(
|
||||
'Application\Controller\Index' => 'Application\Controller\IndexController',
|
||||
'Application\Controller\Account' => 'Application\Controller\AccountController',
|
||||
'Application\Controller\Service' => 'Application\Controller\ServiceController',
|
||||
'Application\Controller\Search' => 'Application\Controller\SearchController',
|
||||
),
|
||||
),
|
||||
'view_manager' => array(
|
||||
'display_not_found_reason' => true,
|
||||
'display_exceptions' => true,
|
||||
'doctype' => 'HTML5',
|
||||
'not_found_template' => 'error/404',
|
||||
'exception_template' => 'error/index',
|
||||
'template_map' => array(
|
||||
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
|
||||
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
|
||||
'error/404' => __DIR__ . '/../view/error/404.phtml',
|
||||
'error/index' => __DIR__ . '/../view/error/index.phtml',
|
||||
'layout/layout/message' => __DIR__ . '/../view/layout/post-message.phtml',
|
||||
'layout/layout/header' => __DIR__ . '/../view/layout/header.phtml',
|
||||
'layout/layout/footer' => __DIR__ . '/../view/layout/footer.phtml',
|
||||
'pagination/control' => __DIR__ . '/../view/layout/pagination.phtml',
|
||||
'pagination/search' => __DIR__ . '/../view/layout/pagination-search.phtml',
|
||||
),
|
||||
'template_path_stack' => array(
|
||||
__DIR__ . '/../view',
|
||||
),
|
||||
'strategies' => array(
|
||||
'ViewJsonStrategy',
|
||||
),
|
||||
),
|
||||
// Placeholder for console routes
|
||||
'console' => array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
return array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
//home
|
||||
'home' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
//'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/',
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Index',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
),//home
|
||||
|
||||
//post
|
||||
'post' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/post[/:action]',
|
||||
'constraints' => array(
|
||||
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Post',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//service
|
||||
|
||||
//service
|
||||
'service' => array(
|
||||
'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/service[/:action]',
|
||||
'constraints' => array(
|
||||
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
|
||||
),
|
||||
'defaults' => array(
|
||||
'module' => 'Application',
|
||||
'__NAMESPACE__' => 'Application\Controller',
|
||||
'controller' => 'Application\Controller\Service',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
'child_routes' => array(
|
||||
'wildcard' => array(
|
||||
'type' => 'Wildcard'
|
||||
)
|
||||
)
|
||||
),//service
|
||||
|
||||
),
|
||||
),
|
||||
'service_manager' => array(
|
||||
'abstract_factories' => array(
|
||||
'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
|
||||
'Zend\Log\LoggerAbstractServiceFactory',
|
||||
),
|
||||
'aliases' => array(
|
||||
'translator' => 'MvcTranslator',
|
||||
),
|
||||
),
|
||||
'translator' => array(
|
||||
'locale' => 'en_US',
|
||||
'translation_file_patterns' => array(
|
||||
array(
|
||||
'type' => 'gettext',
|
||||
'base_dir' => __DIR__ . '/../language',
|
||||
'pattern' => '%s.mo',
|
||||
),
|
||||
),
|
||||
),
|
||||
'controllers' => array(
|
||||
'invokables' => array(
|
||||
'Application\Controller\Index' => 'Application\Controller\IndexController',
|
||||
'Application\Controller\Post' => 'Application\Controller\PostController',
|
||||
'Application\Controller\Service' => 'Application\Controller\ServiceController',
|
||||
'Application\Controller\Search' => 'Application\Controller\SearchController',
|
||||
),
|
||||
),
|
||||
'view_manager' => array(
|
||||
'display_not_found_reason' => true,
|
||||
'display_exceptions' => true,
|
||||
'doctype' => 'HTML5',
|
||||
'not_found_template' => 'error/404',
|
||||
'exception_template' => 'error/index',
|
||||
'template_map' => array(
|
||||
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
|
||||
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
|
||||
'error/404' => __DIR__ . '/../view/error/404.phtml',
|
||||
'error/index' => __DIR__ . '/../view/error/index.phtml',
|
||||
'layout/layout/message' => __DIR__ . '/../view/layout/post-message.phtml',
|
||||
'layout/layout/header' => __DIR__ . '/../view/layout/header.phtml',
|
||||
'layout/layout/footer' => __DIR__ . '/../view/layout/footer.phtml',
|
||||
'pagination/control' => __DIR__ . '/../view/layout/pagination.phtml',
|
||||
'pagination/search' => __DIR__ . '/../view/layout/pagination-search.phtml',
|
||||
),
|
||||
'template_path_stack' => array(
|
||||
__DIR__ . '/../view',
|
||||
),
|
||||
'strategies' => array(
|
||||
'ViewJsonStrategy',
|
||||
),
|
||||
),
|
||||
// Placeholder for console routes
|
||||
'console' => array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
|
@ -1,79 +1,38 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Application\Controller;
|
||||
|
||||
use Zend\Mvc\Controller\AbstractActionController;
|
||||
use Zend\View\Model\ViewModel;
|
||||
use Sookon\Helpers\View as view;
|
||||
|
||||
class IndexController extends AbstractActionController
|
||||
{
|
||||
public $ViewModel;
|
||||
|
||||
function __construct($db = NULL)
|
||||
{
|
||||
$this->ViewModel = new ViewModel();
|
||||
}
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$article = new \Sookon\Article\Lists;
|
||||
$article->opt->limit = 10;
|
||||
$article->opt->where = array(" cate.ptype='news' ");
|
||||
$this->ViewModel->setVariable('articles',$article->fetchAll());
|
||||
|
||||
$article->opt->where = array(" cate.ptype='news' ");
|
||||
$this->ViewModel->setVariable('news',$article->fetchAll());
|
||||
unset($article);
|
||||
|
||||
|
||||
$metadata = new \Westdc\Metadata\Outlink;
|
||||
$metadata->opt->limit = 10;
|
||||
$metadata->opt->sort = "desc";
|
||||
$metadata->opt->order = "m.ts_created";
|
||||
$this->ViewModel->setVariable('metadata_latest',$metadata->fetchAll());
|
||||
|
||||
$metadata->opt->order = "md.viewed";
|
||||
$this->ViewModel->setVariable('metadata',$metadata->fetchAll());
|
||||
|
||||
$metadata->opt->order = "m.ts_created";
|
||||
$metadata->opt->where = array(" ol.host='http://deep.qherc.org' ");
|
||||
$this->ViewModel->setVariable('qinghaihu',$metadata->fetchAll());
|
||||
|
||||
$metadata->opt->where = array(" ol.host='http://www.sanjiangyuan.org.cn' ");
|
||||
$this->ViewModel->setVariable('sanjiangyuan',$metadata->fetchAll());
|
||||
|
||||
|
||||
unset($metadata);
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
public function aboutAction()
|
||||
{
|
||||
$article = new \Sookon\Article\Lists;
|
||||
|
||||
$article->opt->limit = 10;
|
||||
$article->opt->where = array("cate.code='aboutus'");
|
||||
$this->ViewModel->setVariable('articles',$article->fetchAll());
|
||||
unset($article);
|
||||
|
||||
$id = $this->params()->fromRoute("id");
|
||||
if(empty($id))
|
||||
{
|
||||
$id = 89;
|
||||
}
|
||||
|
||||
$article = new \Sookon\Article\Article;
|
||||
$this->ViewModel->setVariable('content',$article->fetch($id));
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Application\Controller;
|
||||
|
||||
use Zend\Mvc\Controller\AbstractActionController;
|
||||
use Zend\View\Model\ViewModel;
|
||||
use Sookon\Helpers\View as view;
|
||||
|
||||
class IndexController extends AbstractActionController
|
||||
{
|
||||
public $ViewModel;
|
||||
|
||||
function __construct($db = NULL)
|
||||
{
|
||||
$this->ViewModel = new ViewModel();
|
||||
}
|
||||
|
||||
//首页
|
||||
public function indexAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
//关于我们
|
||||
public function aboutAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Application\Controller;
|
||||
|
||||
use Zend\Mvc\Controller\AbstractActionController;
|
||||
use Zend\View\Model\ViewModel;
|
||||
use Sookon\Helpers\View as view;
|
||||
|
||||
class PostController extends AbstractActionController
|
||||
{
|
||||
public $ViewModel;
|
||||
|
||||
function __construct($db = NULL)
|
||||
{
|
||||
$this->ViewModel = new ViewModel();
|
||||
}
|
||||
|
||||
//首页
|
||||
public function indexAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
//发布信息
|
||||
public function createAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
//搜索
|
||||
public function searchAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
信息发布
|
|
@ -0,0 +1 @@
|
|||
信息列表
|
|
@ -1,108 +1,107 @@
|
|||
<img src="/img/404error.jpg" class="pull-left img-circle" />
|
||||
<h1><?php echo $this->translate('A 404 error occurred') ?></h1>
|
||||
<h2><?php echo empty($this->message) ? "This page has been eaten by dinosaurs":$this->message ?></h2>
|
||||
<hr />
|
||||
<?php if (isset($this->reason) && $this->reason): ?>
|
||||
|
||||
<?php
|
||||
$reasonMessage= '';
|
||||
switch ($this->reason) {
|
||||
case 'error-controller-cannot-dispatch':
|
||||
$reasonMessage = $this->translate('The requested controller was unable to dispatch the request.');
|
||||
break;
|
||||
case 'error-controller-not-found':
|
||||
$reasonMessage = $this->translate('The requested controller could not be mapped to an existing controller class.');
|
||||
break;
|
||||
case 'error-controller-invalid':
|
||||
$reasonMessage = $this->translate('The requested controller was not dispatchable.');
|
||||
break;
|
||||
case 'error-router-no-match':
|
||||
$reasonMessage = $this->translate('The requested URL could not be matched by routing.');
|
||||
break;
|
||||
default:
|
||||
$reasonMessage = $this->translate('We cannot determine at this time why a 404 was generated.');
|
||||
break;
|
||||
}
|
||||
?>
|
||||
|
||||
<p><?php echo $reasonMessage ?></p>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->controller) && $this->controller): ?>
|
||||
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('Controller') ?>:</dt>
|
||||
<dd><?php echo $this->escapeHtml($this->controller) ?>
|
||||
<?php
|
||||
if (isset($this->controller_class)
|
||||
&& $this->controller_class
|
||||
&& $this->controller_class != $this->controller
|
||||
) {
|
||||
echo '(' . sprintf($this->translate('resolves to %s'), $this->escapeHtml($this->controller_class)) . ')';
|
||||
}
|
||||
?>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
||||
<h1><?php echo $this->translate('A 404 error occurred') ?></h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->reason) && $this->reason): ?>
|
||||
|
||||
<?php
|
||||
$reasonMessage= '';
|
||||
switch ($this->reason) {
|
||||
case 'error-controller-cannot-dispatch':
|
||||
$reasonMessage = $this->translate('The requested controller was unable to dispatch the request.');
|
||||
break;
|
||||
case 'error-controller-not-found':
|
||||
$reasonMessage = $this->translate('The requested controller could not be mapped to an existing controller class.');
|
||||
break;
|
||||
case 'error-controller-invalid':
|
||||
$reasonMessage = $this->translate('The requested controller was not dispatchable.');
|
||||
break;
|
||||
case 'error-router-no-match':
|
||||
$reasonMessage = $this->translate('The requested URL could not be matched by routing.');
|
||||
break;
|
||||
default:
|
||||
$reasonMessage = $this->translate('We cannot determine at this time why a 404 was generated.');
|
||||
break;
|
||||
}
|
||||
?>
|
||||
|
||||
<p><?php echo $reasonMessage ?></p>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->controller) && $this->controller): ?>
|
||||
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('Controller') ?>:</dt>
|
||||
<dd><?php echo $this->escapeHtml($this->controller) ?>
|
||||
<?php
|
||||
if (isset($this->controller_class)
|
||||
&& $this->controller_class
|
||||
&& $this->controller_class != $this->controller
|
||||
) {
|
||||
echo '(' . sprintf($this->translate('resolves to %s'), $this->escapeHtml($this->controller_class)) . ')';
|
||||
}
|
||||
?>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
||||
|
|
|
@ -1,64 +1,62 @@
|
|||
<div class="container">
|
||||
<h1><?php echo $this->translate('An error occurred') ?></h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
||||
</div>
|
||||
<h1><?php echo $this->translate('An error occurred') ?></h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($this->exception->getMessage()) ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($this->exception->getTraceAsString()) ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($e->getMessage()) ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($e->getTraceAsString()) ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
||||
|
|
|
@ -1,41 +1,55 @@
|
|||
<?php echo $this->doctype(); ?>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<?php $config = \Sookon\Helpers\Config::get(); ?>
|
||||
<?php echo $this->headTitle($config->site_title)->setSeparator(' - ')->setAutoEscape(false) ?>
|
||||
|
||||
<?php echo $this->headMeta()
|
||||
->appendName('viewport', 'width=device-width, initial-scale=1.0')
|
||||
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
||||
?>
|
||||
|
||||
<!-- Le styles -->
|
||||
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
|
||||
|
||||
->prependStylesheet($this->basePath() . '/sjyportal/css/bootstrap.min.css')
|
||||
->appendStylesheet($this->basePath() . '/sjyportal/css/bootstrap-responsive.min.css')
|
||||
->appendStylesheet($this->basePath() . '/sjyportal/css/style.css')
|
||||
|
||||
?>
|
||||
|
||||
<!-- Scripts -->
|
||||
<?php echo $this->headScript()
|
||||
|
||||
|
||||
->prependFile($this->basePath() . '/sjyportal/js/bootstrap.min.js')
|
||||
|
||||
->prependFile($this->basePath() . '/js/jquery.min.js')
|
||||
->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
->prependFile($this->basePath() . '/js/html5shiv.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
; ?>
|
||||
</head>
|
||||
<body>
|
||||
<?php echo $this->partial('layout/layout/header');?>
|
||||
|
||||
<?php echo $this->content; ?>
|
||||
<?php echo $this->partial('layout/layout/footer');?>
|
||||
|
||||
<?php echo $this->inlineScript() ?>
|
||||
</body>
|
||||
</html>
|
||||
<?php echo $this->doctype(); ?>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<?php echo $this->headTitle('ZF2 '. $this->translate('Skeleton Application'))->setSeparator(' - ')->setAutoEscape(false) ?>
|
||||
|
||||
<?php echo $this->headMeta()
|
||||
->appendName('viewport', 'width=device-width, initial-scale=1.0')
|
||||
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
||||
?>
|
||||
|
||||
<!-- Le styles -->
|
||||
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
|
||||
->prependStylesheet($this->basePath() . '/css/style.css')
|
||||
->prependStylesheet($this->basePath() . '/css/bootstrap-theme.min.css')
|
||||
->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
|
||||
|
||||
<!-- Scripts -->
|
||||
<?php echo $this->headScript()
|
||||
->prependFile($this->basePath() . '/js/bootstrap.min.js')
|
||||
->prependFile($this->basePath() . '/js/jquery.min.js')
|
||||
->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
->prependFile($this->basePath() . '/js/html5shiv.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
; ?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="<?php echo $this->url('home') ?>"><img src="<?php echo $this->basePath('img/zf2-logo.png') ?>" alt="Zend Framework 2"/> <?php echo $this->translate('Skeleton Application') ?></a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
|
||||
</ul>
|
||||
</div><!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<?php echo $this->content; ?>
|
||||
<hr>
|
||||
<footer>
|
||||
<p>© 2005 - <?php echo date('Y') ?> by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
|
||||
</footer>
|
||||
</div> <!-- /container -->
|
||||
<?php echo $this->inlineScript() ?>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Member;
|
||||
|
||||
use Zend\ModuleManager\ModuleManager;
|
||||
use Zend\Mvc\ModuleRouteListener;
|
||||
use Zend\Mvc\MvcEvent;
|
||||
use Sookon\Authentication\AuthenticationService;
|
||||
use Sookon\Helpers\View as view;
|
||||
use Sookon\Helpers\LayoutHelpers;
|
||||
|
||||
class Module
|
||||
{
|
||||
|
||||
public function onBootstrap(MvcEvent $e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function init(ModuleManager $moduleManager)
|
||||
{
|
||||
$sharedEvents = $moduleManager->getEventManager()->getSharedManager();
|
||||
$sharedEvents->attach(__NAMESPACE__, MvcEvent::EVENT_DISPATCH ,array(new LayoutHelpers, 'setMemberScript'), 100);
|
||||
}
|
||||
|
||||
public function getConfig()
|
||||
{
|
||||
return include __DIR__ . '/config/module.config.php';
|
||||
}
|
||||
|
||||
public function getAutoloaderConfig()
|
||||
{
|
||||
return array(
|
||||
'Zend\Loader\StandardAutoloader' => array(
|
||||
'namespaces' => array(
|
||||
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,101 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
return array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
//member
|
||||
'member' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
//'type' => 'Segment',
|
||||
'options' => array(
|
||||
'route' => '/member',
|
||||
'defaults' => array(
|
||||
'module' => 'Member',
|
||||
'__NAMESPACE__' => 'Member\Controller',
|
||||
'controller' => 'Member\Controller\Index',
|
||||
'action' => 'index',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
),//member
|
||||
|
||||
//login
|
||||
'login' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
'options' => array(
|
||||
'route' => '/member/login',
|
||||
'defaults' => array(
|
||||
'module' => 'Member',
|
||||
'__NAMESPACE__' => 'Member\Controller',
|
||||
'controller' => 'Member\Controller\Account',
|
||||
'action' => 'login',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
),//login
|
||||
|
||||
//register
|
||||
'register' => array(
|
||||
'type' => 'Zend\Mvc\Router\Http\Literal',
|
||||
'options' => array(
|
||||
'route' => '/member/register',
|
||||
'defaults' => array(
|
||||
'module' => 'Member',
|
||||
'__NAMESPACE__' => 'Member\Controller',
|
||||
'controller' => 'Member\Controller\Account',
|
||||
'action' => 'register',
|
||||
),
|
||||
),
|
||||
'may_terminate' => true,
|
||||
),//register
|
||||
|
||||
),
|
||||
),
|
||||
'service_manager' => array(
|
||||
'abstract_factories' => array(
|
||||
'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
|
||||
'Zend\Log\LoggerAbstractServiceFactory',
|
||||
),
|
||||
'aliases' => array(
|
||||
'translator' => 'MvcTranslator',
|
||||
),
|
||||
),
|
||||
'translator' => array(
|
||||
'locale' => 'en_US',
|
||||
'translation_file_patterns' => array(
|
||||
array(
|
||||
'type' => 'gettext',
|
||||
'base_dir' => __DIR__ . '/../language',
|
||||
'pattern' => '%s.mo',
|
||||
),
|
||||
),
|
||||
),
|
||||
'controllers' => array(
|
||||
'invokables' => array(
|
||||
'Member\Controller\Index' => 'Member\Controller\IndexController',
|
||||
'Member\Controller\Account' => 'Member\Controller\AccountController',
|
||||
),
|
||||
),
|
||||
'view_manager' => array(
|
||||
'template_path_stack' => array(
|
||||
__DIR__ . '/../view',
|
||||
),
|
||||
'strategies' => array(
|
||||
'ViewJsonStrategy',
|
||||
),
|
||||
),
|
||||
// Placeholder for console routes
|
||||
'console' => array(
|
||||
'router' => array(
|
||||
'routes' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
Binary file not shown.
|
@ -0,0 +1,153 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ZendSkeletonApplication\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-07-05 22:17-0700\n"
|
||||
"PO-Revision-Date: 2012-07-05 22:17-0700\n"
|
||||
"Last-Translator: Evan Coury <me@evancoury.com>\n"
|
||||
"Language-Team: ZF Contibutors <zf-devteam@zend.com>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: translate\n"
|
||||
"X-Poedit-Language: English\n"
|
||||
"X-Poedit-Country: UNITED STATES\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../view/layout/layout.phtml:6
|
||||
#: ../view/layout/layout.phtml:33
|
||||
msgid "Skeleton Application"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/layout/layout.phtml:36
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/layout/layout.phtml:50
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:2
|
||||
#, php-format
|
||||
msgid "Welcome to %sZend Framework 2%s"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:3
|
||||
#, php-format
|
||||
msgid "Congratulations! You have successfully installed the %sZF2 Skeleton Application%s. You are currently running Zend Framework version %s. This skeleton can serve as a simple starting point for you to begin building your application on ZF2."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:4
|
||||
msgid "Fork Zend Framework 2 on GitHub"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:10
|
||||
msgid "Follow Development"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:11
|
||||
#, php-format
|
||||
msgid "Zend Framework 2 is under active development. If you are interested in following the development of ZF2, there is a special ZF2 portal on the official Zend Framework website which provides links to the ZF2 %swiki%s, %sdev blog%s, %sissue tracker%s, and much more. This is a great resource for staying up to date with the latest developments!"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:12
|
||||
msgid "ZF2 Development Portal"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:16
|
||||
msgid "Discover Modules"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:17
|
||||
#, php-format
|
||||
msgid "The community is working on developing a community site to serve as a repository and gallery for ZF2 modules. The project is available %son GitHub%s. The site is currently live and currently contains a list of some of the modules already available for ZF2."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:18
|
||||
msgid "Explore ZF2 Modules"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:22
|
||||
msgid "Help & Support"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:23
|
||||
#, php-format
|
||||
msgid "If you need any help or support while developing with ZF2, you may reach us via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or feedback you may have regarding the beta releases. Alternatively, you may subscribe and post questions to the %smailing lists%s."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/application/index/index.phtml:24
|
||||
msgid "Ping us on IRC"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:1
|
||||
msgid "An error occurred"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:8
|
||||
msgid "Additional information"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:11
|
||||
#: ../view/error/index.phtml:35
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:15
|
||||
#: ../view/error/index.phtml:39
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:19
|
||||
#: ../view/error/index.phtml:43
|
||||
#: ../view/error/404.phtml:55
|
||||
msgid "Stack trace"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:29
|
||||
msgid "Previous exceptions"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/index.phtml:58
|
||||
msgid "No Exception available"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:1
|
||||
msgid "A 404 error occurred"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:10
|
||||
msgid "The requested controller was unable to dispatch the request."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:13
|
||||
msgid "The requested controller could not be mapped to an existing controller class."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:16
|
||||
msgid "The requested controller was not dispatchable."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:19
|
||||
msgid "The requested URL could not be matched by routing."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:22
|
||||
msgid "We cannot determine at this time why a 404 was generated."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:34
|
||||
msgid "Controller"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:41
|
||||
#, php-format
|
||||
msgid "resolves to %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:51
|
||||
msgid "Exception"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
|
@ -0,0 +1,174 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ZendSkeletonApplication\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-07-05 22:17-0700\n"
|
||||
"PO-Revision-Date: 2012-09-08 13:15+0800\n"
|
||||
"Last-Translator: Evan Coury <me@evancoury.com>\n"
|
||||
"Language-Team: ZF Contibutors <zf-devteam@zend.com>\n"
|
||||
"Language: en_US\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Poedit-KeywordsList: translate\n"
|
||||
"X-Poedit-Basepath: .\n"
|
||||
"X-Poedit-SearchPath-0: ..\n"
|
||||
|
||||
#: ../view/layout/layout.phtml:6 ../view/layout/layout.phtml:33
|
||||
msgid "Skeleton Application"
|
||||
msgstr "框架应用"
|
||||
|
||||
#: ../view/layout/layout.phtml:36
|
||||
msgid "Home"
|
||||
msgstr "主页"
|
||||
|
||||
#: ../view/layout/layout.phtml:50
|
||||
msgid "All rights reserved."
|
||||
msgstr "All rights reserved."
|
||||
|
||||
#: ../view/application/index/index.phtml:2
|
||||
#, php-format
|
||||
msgid "Welcome to %sZend Framework 2%s"
|
||||
msgstr "欢迎使用%sZend Framework 2%s"
|
||||
|
||||
#: ../view/application/index/index.phtml:3
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Congratulations! You have successfully installed the %sZF2 Skeleton "
|
||||
"Application%s. You are currently running Zend Framework version %s. This "
|
||||
"skeleton can serve as a simple starting point for you to begin building your "
|
||||
"application on ZF2."
|
||||
msgstr ""
|
||||
"恭喜!您已经成功安装了%sZF2 Skeleton Application%s。您现在运行的Zend "
|
||||
"Framework的版本为%s。这个框架应用可以用作您创建自己的ZF2应用的起点。"
|
||||
|
||||
#: ../view/application/index/index.phtml:4
|
||||
msgid "Fork Zend Framework 2 on GitHub"
|
||||
msgstr "在GitHub中获取Zend Framework 2到您的应用"
|
||||
|
||||
#: ../view/application/index/index.phtml:10
|
||||
msgid "Follow Development"
|
||||
msgstr "关注开发"
|
||||
|
||||
#: ../view/application/index/index.phtml:11
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Zend Framework 2 is under active development. If you are interested in "
|
||||
"following the development of ZF2, there is a special ZF2 portal on the "
|
||||
"official Zend Framework website which provides links to the ZF2 %swiki%s, "
|
||||
"%sdev blog%s, %sissue tracker%s, and much more. This is a great resource for "
|
||||
"staying up to date with the latest developments!"
|
||||
msgstr ""
|
||||
"Zend Framework 2正在开发中。如果您有兴趣关注ZF2的开发,Zend Framework的官方网"
|
||||
"站有一个专门的ZF2入口,从这个入口可以进入ZF2的%swiki%s, %sdev blog%s, "
|
||||
"%sissue tracker%s等。这些是关注我们最新开发的好资源!"
|
||||
|
||||
#: ../view/application/index/index.phtml:12
|
||||
msgid "ZF2 Development Portal"
|
||||
msgstr "ZF2 开发入口"
|
||||
|
||||
#: ../view/application/index/index.phtml:16
|
||||
msgid "Discover Modules"
|
||||
msgstr "探索模块"
|
||||
|
||||
#: ../view/application/index/index.phtml:17
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The community is working on developing a community site to serve as a "
|
||||
"repository and gallery for ZF2 modules. The project is available %son GitHub"
|
||||
"%s. The site is currently live and currently contains a list of some of the "
|
||||
"modules already available for ZF2."
|
||||
msgstr ""
|
||||
"社区正在开发一个能够存储和展示ZF2模块的功能。这个项目可以在%son GitHub%s找"
|
||||
"到。这个网站现在已经包含了许多ZF2可用的模块。"
|
||||
|
||||
#: ../view/application/index/index.phtml:18
|
||||
msgid "Explore ZF2 Modules"
|
||||
msgstr "浏览ZF2模块"
|
||||
|
||||
#: ../view/application/index/index.phtml:22
|
||||
msgid "Help & Support"
|
||||
msgstr "帮助 & 支持"
|
||||
|
||||
#: ../view/application/index/index.phtml:23
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you need any help or support while developing with ZF2, you may reach us "
|
||||
"via IRC: %s#zftalk on Freenode%s. We'd love to hear any questions or "
|
||||
"feedback you may have regarding the beta releases. Alternatively, you may "
|
||||
"subscribe and post questions to the %smailing lists%s."
|
||||
msgstr ""
|
||||
"如果您需要一些关于ZF2开发的帮助和支持,可以通过IRC: %s#zftalk on Freenode"
|
||||
"%s。我们非常乐意收到您对于发布的公测版提问和反馈。或者,您也可以通"
|
||||
"过%smailing lists%s订阅并发布问题。"
|
||||
|
||||
#: ../view/application/index/index.phtml:24
|
||||
msgid "Ping us on IRC"
|
||||
msgstr "在IRC上ping我们"
|
||||
|
||||
#: ../view/error/index.phtml:1
|
||||
msgid "An error occurred"
|
||||
msgstr "发生错误"
|
||||
|
||||
#: ../view/error/index.phtml:8
|
||||
msgid "Additional information"
|
||||
msgstr "附加信息"
|
||||
|
||||
#: ../view/error/index.phtml:11 ../view/error/index.phtml:35
|
||||
msgid "File"
|
||||
msgstr "文件"
|
||||
|
||||
#: ../view/error/index.phtml:15 ../view/error/index.phtml:39
|
||||
msgid "Message"
|
||||
msgstr "消息"
|
||||
|
||||
#: ../view/error/index.phtml:19 ../view/error/index.phtml:43
|
||||
#: ../view/error/404.phtml:55
|
||||
msgid "Stack trace"
|
||||
msgstr "Stack trace"
|
||||
|
||||
#: ../view/error/index.phtml:29
|
||||
msgid "Previous exceptions"
|
||||
msgstr "上一个异常"
|
||||
|
||||
#: ../view/error/index.phtml:58
|
||||
msgid "No Exception available"
|
||||
msgstr "没有可用的Exception"
|
||||
|
||||
#: ../view/error/404.phtml:1
|
||||
msgid "A 404 error occurred"
|
||||
msgstr "404 缺少目标文件"
|
||||
|
||||
#: ../view/error/404.phtml:10
|
||||
msgid "The requested controller was unable to dispatch the request."
|
||||
msgstr "所请求的控制器不能分发该请求"
|
||||
|
||||
#: ../view/error/404.phtml:13
|
||||
msgid ""
|
||||
"The requested controller could not be mapped to an existing controller class."
|
||||
msgstr "所请求的控制器不能映射到已存在的控制器类"
|
||||
|
||||
#: ../view/error/404.phtml:16
|
||||
msgid "The requested controller was not dispatchable."
|
||||
msgstr ""
|
||||
|
||||
#: ../view/error/404.phtml:19
|
||||
msgid "The requested URL could not be matched by routing."
|
||||
msgstr "所请求的URL不能与路由对应"
|
||||
|
||||
#: ../view/error/404.phtml:22
|
||||
msgid "We cannot determine at this time why a 404 was generated."
|
||||
msgstr "我们不能确定为什么这次会出现404"
|
||||
|
||||
#: ../view/error/404.phtml:34
|
||||
msgid "Controller"
|
||||
msgstr "控制器"
|
||||
|
||||
#: ../view/error/404.phtml:41
|
||||
#, php-format
|
||||
msgid "resolves to %s"
|
||||
msgstr "解决: %s"
|
||||
|
||||
#: ../view/error/404.phtml:51
|
||||
msgid "Exception"
|
||||
msgstr "异常"
|
|
@ -0,0 +1,314 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Member\Controller;
|
||||
|
||||
use Zend\Mvc\Controller\AbstractActionController;
|
||||
use Zend\View\Model\ViewModel;
|
||||
use Zend\View\Model\JsonModel;
|
||||
use Zend\Authentication\AuthenticationService;
|
||||
use Zend\Authentication\Storage\Session as SessionStorage;
|
||||
use Sookon\User\Account;
|
||||
use Sookon\User\Member;
|
||||
use Sookon\User\Gravatar;
|
||||
use Sookon\Helpers\Auth;
|
||||
use Sookon\Helpers\Captcha;
|
||||
use Sookon\Helpers\View as view;
|
||||
|
||||
class AccountController extends AbstractActionController
|
||||
{
|
||||
public $ViewModel;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->ViewModel = new ViewModel();
|
||||
}
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
|
||||
$account = new Account();
|
||||
|
||||
if(!empty($submit))
|
||||
{
|
||||
$data = $account->getEditParam($this->getRequest());
|
||||
$Listener = new \Sookon\User\Listener\EditListener();
|
||||
$account->getEventManager()->attachAggregate($Listener);
|
||||
$type = $this->params()->fromPost('type');
|
||||
$this->ViewModel->setVariable('section',$type) ;
|
||||
$status = $account->edit($data,$type);
|
||||
if($status !== true)
|
||||
{
|
||||
$this->ViewModel->setVariable('error',view::Error($status));
|
||||
}else{
|
||||
$this->ViewModel->setVariable('error',view::Error("修改成功","alert-success"));
|
||||
}
|
||||
}
|
||||
|
||||
$user = $account->getAccountInfo();
|
||||
|
||||
$av = new Gravatar();
|
||||
$this->ViewModel->setVariable('user',$user);
|
||||
$this->ViewModel->setVariable('avatar',$av->Get($user['email'],100));
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
public function loginAction()
|
||||
{
|
||||
if($this->getRequest()->isXmlHttpRequest())
|
||||
{
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
if(!empty($submit))
|
||||
{
|
||||
if ($auth->hasIdentity())
|
||||
{
|
||||
return JsonModel(array('error'=>"您已登录,无需重复登录"));
|
||||
}
|
||||
|
||||
else{
|
||||
$account = new Account();
|
||||
|
||||
$status = $account->login(array(
|
||||
'username'=>$this->params()->fromPost('username'),
|
||||
'password'=>$this->params()->fromPost('password')
|
||||
));
|
||||
|
||||
if(is_array($status))
|
||||
{
|
||||
return new JsonModel($status);
|
||||
}
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
$auth = new Auth;
|
||||
$instance = $auth->getInstance();
|
||||
|
||||
if ($instance->hasIdentity())
|
||||
{
|
||||
view::Post($this,'您已经登陆过了,无需重复登陆','/');
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
if(!empty($submit))
|
||||
{
|
||||
$account = new Account();
|
||||
$status = $account->login(array(
|
||||
'username'=>$this->params()->fromPost('username'),
|
||||
'password'=>$this->params()->fromPost('password')
|
||||
));
|
||||
|
||||
if(isset($status['error']))
|
||||
{
|
||||
$viewModel = array('error' => view::Error($status['error']));
|
||||
if(isset($status['place']))
|
||||
{
|
||||
array_push($viewModel,array("place"=>$status['place']));
|
||||
}
|
||||
return new ViewModel($viewModel);
|
||||
}else{
|
||||
if(isset($_GET['href']) && !preg_match("/http:\/\//",$_GET['href']) && $_GET['href'] != '/account/login')
|
||||
{
|
||||
$href = $_GET['href'];
|
||||
}else{
|
||||
$href = "/";
|
||||
}
|
||||
view::Post($this,"登陆成功!",$href);
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
}
|
||||
}//login
|
||||
|
||||
public function registerAction()
|
||||
{
|
||||
|
||||
if($this->getRequest()->isXmlHttpRequest())
|
||||
{
|
||||
$this->_helper->layout->disableLayout();
|
||||
$this->_helper->viewRenderer->setNoRender();
|
||||
|
||||
$account = new Account();
|
||||
$data = $account->getParam($this->_request);
|
||||
|
||||
$result = $account->register($data);
|
||||
|
||||
if(!empty($result))
|
||||
{
|
||||
$this->jsonexit($result);
|
||||
return true;
|
||||
}
|
||||
|
||||
$this->jsonexit(array('error'=>'|o| 服务器掉链子了,请重试'));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
$success = false;
|
||||
|
||||
$auth = new Auth;
|
||||
$instance = $auth->getInstance();
|
||||
|
||||
if ($instance->hasIdentity())
|
||||
{
|
||||
view::Post($this,'您已经登陆过了,无需重复登陆','/');
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
if(!empty($submit))
|
||||
{
|
||||
$account = new Account();
|
||||
$data = array(
|
||||
'username' => $this->params()->fromPost('username'),
|
||||
'password'=>$this->params()->fromPost('password'),
|
||||
'confirm_password'=>$this->params()->fromPost('confirm_password'),
|
||||
'email'=>$this->params()->fromPost('email'),
|
||||
'realname'=>$this->params()->fromPost('realname')
|
||||
);
|
||||
|
||||
$result = $account->register($data);
|
||||
|
||||
if(!empty($result))
|
||||
{
|
||||
if(isset($result['error']))
|
||||
{
|
||||
$this->ViewModel->setVariable('error',view::Error($result['error']));
|
||||
$this->ViewModel->setVariable('data',$data);
|
||||
if(isset($result['place']))
|
||||
{
|
||||
$this->ViewModel->setVariable('place',$result['place']);
|
||||
}
|
||||
return $this->ViewModel;
|
||||
}
|
||||
if(isset($result['success']))
|
||||
{
|
||||
view::Post($this,"注册成功!",'/');
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}else{
|
||||
$this->ViewModel->setVariable('error','处理中出现问题');
|
||||
$this->ViewModel->setVariable('data',$data);
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}//submit
|
||||
}//用户注册
|
||||
|
||||
//登录状态
|
||||
public function loginstatus()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function logoutAction()
|
||||
{
|
||||
$auth = new Auth();
|
||||
$result = $auth->clearIndentity();
|
||||
|
||||
Member::flushcookie();
|
||||
|
||||
view::Post($this,"您已经成功注销",'/');
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
//找回密码
|
||||
public function forgotpasswordAction()
|
||||
{
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
$captcha = new Captcha();
|
||||
if(!empty($submit))
|
||||
{
|
||||
$email = $this->params()->fromPost('email');
|
||||
$captchaword = $this->params()->fromPost('captcha');
|
||||
|
||||
if(!$captcha->isValid($captchaword))
|
||||
{
|
||||
$this->ViewModel->setVariable('error',view::Error("验证码错误"));
|
||||
$this->ViewModel->setVariable('captcha', $captcha->setCaptcha());
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
$account = new Account();
|
||||
$status = $account->getMyPassword($email);
|
||||
if(isset($status['error']) && !empty($status['error']))
|
||||
{
|
||||
$this->ViewModel->setVariable('captcha', $captcha->setCaptcha());
|
||||
$this->ViewModel->setVariable('error',$status['error']);
|
||||
return $this->ViewModel;
|
||||
}else{
|
||||
$this->ViewModel->setVariable('msg',"申请成功!请在您的邮箱中查看密码重置邮件");
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}else{
|
||||
$this->ViewModel->setVariable('captcha', $captcha->setCaptcha());
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}
|
||||
|
||||
//重置密码
|
||||
public function getpasswordAction()
|
||||
{
|
||||
$submit = $this->params()->fromPost('submit');
|
||||
$salt = $this->params()->fromQuery('salt');
|
||||
|
||||
if(empty($salt))
|
||||
{
|
||||
$this->ViewModel->setVariable('msg',view::Msg("alert-danger","缺少密码重置密钥"));
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
$this->ViewModel->setVariable('salt',$salt);
|
||||
|
||||
if(!empty($submit))
|
||||
{
|
||||
$data = array(
|
||||
'username' => $this->params()->fromPost('username'),
|
||||
'password' => $this->params()->fromPost('password'),
|
||||
'confirm_password' => $this->params()->fromPost('confirm_password'),
|
||||
'salt' => $salt
|
||||
);
|
||||
$account = new Account();
|
||||
|
||||
$Listener = new \Sookon\User\Listener\PwdListener();
|
||||
$account->getEventManager()->attachAggregate($Listener);
|
||||
|
||||
$status = $account->resetPassword($data);
|
||||
|
||||
if(isset($status['error']) && !empty($status['error']))
|
||||
{
|
||||
$this->ViewModel->setVariable('username',$data['username']);
|
||||
$this->ViewModel->setVariable('error',view::Error($status['error']));
|
||||
return $this->ViewModel;
|
||||
}else{
|
||||
$this->ViewModel->setVariable('msg',view::Msg("alert-success","您的密码已经成功更改,<a href='/account/login'>请点击这里登陆</a>"));
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}
|
||||
}//getpasswordAction()
|
||||
|
||||
public function captchaAction()
|
||||
{
|
||||
if($this->getRequest()->isXmlHttpRequest())
|
||||
{
|
||||
$this->ViewModel->setTerminal(true);
|
||||
$captcha = new Captcha();
|
||||
$url = $captcha->setCaptcha();
|
||||
echo $url;
|
||||
exit();
|
||||
}else{
|
||||
echo "bad request!";
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework (http://framework.zend.com/)
|
||||
*
|
||||
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
||||
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
|
||||
namespace Member\Controller;
|
||||
|
||||
use Zend\Mvc\Controller\AbstractActionController;
|
||||
use Zend\View\Model\ViewModel;
|
||||
use Sookon\Helpers\View as view;
|
||||
|
||||
class IndexController extends AbstractActionController
|
||||
{
|
||||
public $ViewModel;
|
||||
|
||||
function __construct($db = NULL)
|
||||
{
|
||||
$this->ViewModel = new ViewModel();
|
||||
}
|
||||
|
||||
public function indexAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
|
||||
public function aboutAction()
|
||||
{
|
||||
|
||||
return $this->ViewModel;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,107 @@
|
|||
<h1><?php echo $this->translate('A 404 error occurred') ?></h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->reason) && $this->reason): ?>
|
||||
|
||||
<?php
|
||||
$reasonMessage= '';
|
||||
switch ($this->reason) {
|
||||
case 'error-controller-cannot-dispatch':
|
||||
$reasonMessage = $this->translate('The requested controller was unable to dispatch the request.');
|
||||
break;
|
||||
case 'error-controller-not-found':
|
||||
$reasonMessage = $this->translate('The requested controller could not be mapped to an existing controller class.');
|
||||
break;
|
||||
case 'error-controller-invalid':
|
||||
$reasonMessage = $this->translate('The requested controller was not dispatchable.');
|
||||
break;
|
||||
case 'error-router-no-match':
|
||||
$reasonMessage = $this->translate('The requested URL could not be matched by routing.');
|
||||
break;
|
||||
default:
|
||||
$reasonMessage = $this->translate('We cannot determine at this time why a 404 was generated.');
|
||||
break;
|
||||
}
|
||||
?>
|
||||
|
||||
<p><?php echo $reasonMessage ?></p>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->controller) && $this->controller): ?>
|
||||
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('Controller') ?>:</dt>
|
||||
<dd><?php echo $this->escapeHtml($this->controller) ?>
|
||||
<?php
|
||||
if (isset($this->controller_class)
|
||||
&& $this->controller_class
|
||||
&& $this->controller_class != $this->controller
|
||||
) {
|
||||
echo '(' . sprintf($this->translate('resolves to %s'), $this->escapeHtml($this->controller_class)) . ')';
|
||||
}
|
||||
?>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getMessage() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getTraceAsString() ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
|
@ -0,0 +1,62 @@
|
|||
<h1><?php echo $this->translate('An error occurred') ?></h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
|
||||
|
||||
<?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Additional information') ?>:</h2>
|
||||
<h3><?php echo get_class($this->exception); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->exception->getFile() ?>:<?php echo $this->exception->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($this->exception->getMessage()) ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($this->exception->getTraceAsString()) ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php
|
||||
$e = $this->exception->getPrevious();
|
||||
if ($e) :
|
||||
?>
|
||||
<hr/>
|
||||
<h2><?php echo $this->translate('Previous exceptions') ?>:</h2>
|
||||
<ul class="unstyled">
|
||||
<?php while($e) : ?>
|
||||
<li>
|
||||
<h3><?php echo get_class($e); ?></h3>
|
||||
<dl>
|
||||
<dt><?php echo $this->translate('File') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $e->getFile() ?>:<?php echo $e->getLine() ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Message') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($e->getMessage()) ?></pre>
|
||||
</dd>
|
||||
<dt><?php echo $this->translate('Stack trace') ?>:</dt>
|
||||
<dd>
|
||||
<pre class="prettyprint linenums"><?php echo $this->escapeHtml($e->getTraceAsString()) ?></pre>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<?php
|
||||
$e = $e->getPrevious();
|
||||
endwhile;
|
||||
?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<h3><?php echo $this->translate('No Exception available') ?></h3>
|
||||
|
||||
<?php endif ?>
|
||||
|
||||
<?php endif ?>
|
|
@ -0,0 +1,55 @@
|
|||
<?php echo $this->doctype(); ?>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<?php echo $this->headTitle('ZF2 '. $this->translate('Skeleton Application'))->setSeparator(' - ')->setAutoEscape(false) ?>
|
||||
|
||||
<?php echo $this->headMeta()
|
||||
->appendName('viewport', 'width=device-width, initial-scale=1.0')
|
||||
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
||||
?>
|
||||
|
||||
<!-- Le styles -->
|
||||
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
|
||||
->prependStylesheet($this->basePath() . '/css/style.css')
|
||||
->prependStylesheet($this->basePath() . '/css/bootstrap-theme.min.css')
|
||||
->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
|
||||
|
||||
<!-- Scripts -->
|
||||
<?php echo $this->headScript()
|
||||
->prependFile($this->basePath() . '/js/bootstrap.min.js')
|
||||
->prependFile($this->basePath() . '/js/jquery.min.js')
|
||||
->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
->prependFile($this->basePath() . '/js/html5shiv.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
||||
; ?>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="<?php echo $this->url('home') ?>"><img src="<?php echo $this->basePath('img/zf2-logo.png') ?>" alt="Zend Framework 2"/> <?php echo $this->translate('Skeleton Application') ?></a>
|
||||
</div>
|
||||
<div class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li class="active"><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a></li>
|
||||
</ul>
|
||||
</div><!--/.nav-collapse -->
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container">
|
||||
<?php echo $this->content; ?>
|
||||
<hr>
|
||||
<footer>
|
||||
<p>© 2005 - <?php echo date('Y') ?> by Zend Technologies Ltd. <?php echo $this->translate('All rights reserved.') ?></p>
|
||||
</footer>
|
||||
</div> <!-- /container -->
|
||||
<?php echo $this->inlineScript() ?>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
登陆
|
|
@ -0,0 +1 @@
|
|||
注册
|
|
@ -0,0 +1 @@
|
|||
会员首页
|
Loading…
Reference in New Issue