]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/arraywrapper.php
Merge branch '0.8.x' into invite-enabled
[quix0rs-gnu-social.git] / lib / arraywrapper.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) {
21     exit(1);
22 }
23
24 class ArrayWrapper
25 {
26     var $_items = null;
27     var $_count = 0;
28     var $_i = -1;
29
30     function __construct($items)
31     {
32         $this->_items = $items;
33         $this->_count = count($this->_items);
34     }
35
36     function fetch()
37     {
38         if (!$this->_items) {
39             return false;
40         }
41         $this->_i++;
42         if ($this->_i < $this->_count) {
43             return true;
44         } else {
45             return false;
46         }
47     }
48
49     function __set($name, $value)
50     {
51         $item =& $this->_items[$this->_i];
52         $item->$name = $value;
53         return $item->$name;
54     }
55
56     function __get($name)
57     {
58         $item =& $this->_items[$this->_i];
59         return $item->$name;
60     }
61
62     function __isset($name)
63     {
64         $item =& $this->_items[$this->_i];
65         return isset($item->$name);
66     }
67
68     function __unset($name)
69     {
70         $item =& $this->_items[$this->_i];
71         unset($item->$name);
72     }
73
74     function __call($name, $args)
75     {
76         $item =& $this->_items[$this->_i];
77         return call_user_func_array(array($item, $name), $args);
78     }
79 }