OSDN Git Service

- added Validator Required and Filter Test.
[ethna/ethna.git] / skel / app.viewclass.php
1 <?php
2 // vim: foldmethod=marker
3 /**
4  *  {$project_id}_ViewClass.php
5  *
6  *  @author     {$author}
7  *  @package    {$project_id}
8  *  @version    $Id$
9  */
10
11 // {{{ {$project_id}_ViewClass
12 /**
13  *  View class.
14  *
15  *  @author     {$author}
16  *  @package    {$project_id}
17  *  @access     public
18  */
19 class {$project_id}_ViewClass extends Ethna_ViewClass
20 {
21     /**
22      *  set common default value.
23      *
24      *  @access protected
25      *  @param  object  {$project_id}_Renderer  Renderer object.
26      */
27     function _setDefault(&$renderer)
28     {
29     }
30 }
31 // }}}
32
33 ?>