source: branches/1.2/contactcenter/inc/class.so_type.inc.php @ 2

Revision 2, 1.5 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2  /***************************************************************************\
3  * eGroupWare - Contacts Center                                              *
4  * http://www.egroupware.org                                                 *
5  *                                                                           *
6  * Storage Object Classes                                                    *
7  * Written by:                                                               *
8  *  - Raphael Derosso Pereira <raphaelpereira@users.sourceforge.net>         *
9  *  sponsored by Thyamad - http://www.thyamad.com                            *
10  * ------------------------------------------------------------------------- *
11  *  This program is free software; you can redistribute it and/or modify it  *
12  *  under the terms of the GNU General Public License as published by the    *
13  *  Free Software Foundation; either version 2 of the License, or (at your   *
14  *  option) any later version.                                               *
15  \***************************************************************************/
16
17
18        include_once("class.so_main.inc.php");
19       
20        class so_type extends so_main
21        {
22                var $type_name;
23               
24                /*!
25               
26                        @function get_type_name
27                        @abstract Returns the Type Name
28                        @author Raphael Derosso Pereira
29               
30                */
31                function get_type_name (  )
32                {
33                        return $this->type_name['value'];
34                }
35       
36                /*!
37                */
38                function set_type_name ( $type )
39                {
40                        $this->type_name['value'] = $name;
41                        $this->manage_fields($this->type_name, 'changed');
42                }
43       
44        }
45?>
Note: See TracBrowser for help on using the repository browser.