OSDN Git Service

Merge branch 'plugin_abstract'
[ethna/ethna.git] / skel / skel.view.php
1 <?php
2 /**
3  *  {$view_path}
4  *
5  *  @author     {$author}
6  *  @package    {$project_id}
7  *  @version    $Id$
8  */
9
10 /**
11  *  {$forward_name} view implementation.
12  *
13  *  @author     {$author}
14  *  @access     public
15  *  @package    {$project_id}
16  */
17 class {$view_class} extends {$project_id}_ViewClass
18 {
19     /** @var boolean  layout template use flag   */
20     var $use_layout = true;
21
22     /**
23      *  preprocess before forwarding.
24      *
25      *  @access public
26      */
27     function preforward()
28     {
29     }
30 }
31
32 ?>