root/events/phpframework/ethna/trunk/skel/skel.app_object.php @ 13385

Revision 13385, 0.6 kB (checked in by maru_cc, 5 years ago)

add-project & pear-local install smarty,simpletst,PEAR_DB

Line 
1<?php
2/**
3 *  {$app_path}
4 *
5 *  @author     {$author}
6 *  @package    Phwittr
7 *  @version    $Id: skel.app_object.php 532 2008-05-13 22:41:22Z mumumu-org $
8 */
9
10/**
11 *  {$app_object}Manager
12 *
13 *  @author     {$author}
14 *  @access     public
15 *  @package    Phwittr
16 */
17class {$app_object}Manager extends Ethna_AppManager
18{
19}
20
21/**
22 *  {$app_object}
23 *
24 *  @author     {$author}
25 *  @access     public
26 *  @package    Phwittr
27 */
28class {$app_object} extends Ethna_AppObject
29{
30    /**
31     *  property display name getter.
32     *
33     *  @access public
34     */
35    function getName($key)
36    {
37        return $this->get($key);
38    }
39}
40
41?>
Note: See TracBrowser for help on using the browser.