-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTEntityCollection.php
More file actions
executable file
·61 lines (55 loc) · 1.2 KB
/
TEntityCollection.php
File metadata and controls
executable file
·61 lines (55 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* Created by PhpStorm.
* User: Adrian
* Date: Mar 9, 2011
* Time: 4:13:04 PM
* To change this template use File | Settings | File Templates.
*/
class TEntityCollection extends TEntity
{
public $entity_type = 'EntiryCollection';
public $modelname ='';
public $_items = null;
function ItemCount()
{
return count($this->_items);
}
function Items($index)
{
return $this->_items[$index];
}
function loadItems()
{
$this->_items = array();
if ($this->guid > 9)
{
if (!empty($this->modelname ))
$col = new $this->modelname();
else
$col = new TDBEntities(); /// this will actually not work because of collection_guid may need a join
$col->find('collection_guid = '.$this->guid );
while ($item =$col->nextEntity())
{
$this->_items[] = $item;
}
}
}
function AddEntity($entity)
{
if (!is_array($this->_items))
{
$this->loadItems();
}
$this->_items[] = $entity;
}
function save()
{
parent::save();
foreach($this->_items as $item)
{
$item->collection_guid = $this->guid;
$item->save();
}
}
}