e73f8a8d8c9b68c21c6205ae24680f132b8aedbd
[shipsimu.git] / inc / classes / main / class_FrameworkArrayObject.php
1 <?php
2 /**
3  * Class for saving arrays as an object. We need this little extension for
4  * some common methods used in the whole application. Please see below if you
5  * need more details.
6  *
7  * @author              Roland Haeder <webmaster@ship-simu.org>
8  * @version             0.0
9  * @copyright   Copyright(c) 2007, 2008 Roland Haeder, this is free software
10  * @license             GNU GPL 3.0 or any newer version
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25 class FrameworkArrayObject extends ArrayObject {
26         /**
27          * Constructor for smooth coding style ;-)
28          *
29          * @param               $class  The class's real name
30          * @return      void
31          */
32         public function constructor ($class) {
33                 // $class will be ignored for backward compatiblity
34         }
35
36         /**
37          * Get real class' name back
38          *
39          * @return      $realClass      The class' real name
40          */
41         public function __toString () {
42                 return get_class($this);
43         }
44 }
45
46 // [EOF]
47 ?>