OSDN Git Service

- followed ini file name changes.
[ethna/ethna.git] / class / View / 403.php
1 <?php
2 // vim: foldmethod=marker
3 /**
4  *  Ethna_View_403.php
5  *
6  *  @author     Yoshinari Takaoka <takaoka@beatcraft.com>
7  *  @license    http://www.opensource.org/licenses/bsd-license.php The BSD License
8  *  @package    Ethna
9  *  @version    $Id$
10  */
11
12 // {{{ Ethna_View_403
13 /**
14  *  403ページ(アクセスを禁止することを知らせるページ)
15  *  を出力するビューの実装
16  *
17  *  @author     Yoshinari Takaoka <takaoka@beatcraft.com>
18  *  @access     public
19  *  @package    Ethna
20  */
21 class Ethna_View_403 extends Ethna_ViewClass
22 {
23     /**#@+
24      *  @access private
25      */
26
27     /**#@-*/
28
29     /**
30      *  403 ページを出力するための前処理を行う
31      *
32      *  @access public
33      *  @param  array  $param  出力に必要なユーザー定義パラメータ
34      */
35     function preforward($param = array())
36     {
37         $this->error(403);
38     }
39
40 }
41 // }}}