index() public method

新着情報一覧を表示する。
public index ( Application $app, Request $request ) : Response
$app Eccube\Application
$request Symfony\Component\HttpFoundation\Request
return Symfony\Component\HttpFoundation\Response
示例#1
0
 /**
  * (non-PHPdoc)
  * @see \Eccube\Controller\Admin\Content\NewsController::index()
  * @deprecated 3.1 delete. use NewsController
  * @param Application $app
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function index(Application $app)
 {
     return parent::index($app);
 }
示例#2
0
 /**
  * (non-PHPdoc)
  * @see \Eccube\Controller\Admin\Content\NewsController::index()
  * @deprecated 3.1 delete. use NewsController
  * @param Application $app
  * @return \Symfony\Component\HttpFoundation\Response
  */
 public function index(Application $app, Request $request = null)
 {
     return parent::index($app, $request);
 }