ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilExAssWikiTeamAR.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/ActiveRecord/class.ActiveRecord.php");
6 
15 {
19  public static function returnDbTableName()
20  {
21  return 'exc_ass_wiki_team';
22  }
23 
35  protected $id;
36 
45  protected $template_ref_id = 0;
46 
55  protected $container_ref_id = 0;
56 
57 
63  public function getId()
64  {
65  return $this->id;
66  }
67 
68 
74  public function setId($id)
75  {
76  $this->id = $id;
77  }
78 
79 
85  public function setTemplateRefId($a_template_ref_id)
86  {
87  $this->template_ref_id = $a_template_ref_id;
88  }
89 
90 
96  public function getTemplateRefId()
97  {
99  }
100 
101 
107  public function setContainerRefId($a_container_ref_id)
108  {
109  $this->container_ref_id = $a_container_ref_id;
110  }
111 
112 
118  public function getContainerRefId()
119  {
121  }
122 }
Class ActiveRecord.
getTemplateRefId()
Get template ref id.
Item group active record class.
setTemplateRefId($a_template_ref_id)
Set template ref id.
getContainerRefId()
Get container ref id.
setContainerRefId($a_container_ref_id)
Set container ref id.