ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilCloudGroupedListGUI.php
Go to the documentation of this file.
1 <?php
2 
11 {
12 
16  protected $count = 0;
17 
18 
31  public function addEntry($a_content, $a_href = '', $a_target = '', $a_onclick = '', $a_add_class = '', $a_id = '', $a_ttip = '', $a_tt_my = 'right center', $a_tt_at = 'left center', $a_tt_use_htmlspecialchars = true)
32  {
33  $this->count++;
34  parent::addEntry($a_content, $a_href, $a_target, $a_onclick, $a_add_class, $a_id, $a_ttip, $a_tt_my, $a_tt_at, $a_tt_use_htmlspecialchars); // TODO: Change the autogenerated stub
35  }
36 
37 
42  public function addGroupHeader($a_content, $a_add_class = "")
43  {
44  $this->count++;
45  parent::addGroupHeader($a_content, $a_add_class); // TODO: Change the autogenerated stub
46  }
47 
48 
49  public function addSeparator()
50  {
51  $this->count++;
52  parent::addSeparator(); // TODO: Change the autogenerated stub
53  }
54 
55 
59  public function getCount()
60  {
61  return $this->count;
62  }
63 
64 
68  public function hasItems()
69  {
70  return $this->getCount() > 0;
71  }
72 }
addEntry($a_content, $a_href='', $a_target='', $a_onclick='', $a_add_class='', $a_id='', $a_ttip='', $a_tt_my='right center', $a_tt_at='left center', $a_tt_use_htmlspecialchars=true)
Class ilCloudGroupedListGUI.
addGroupHeader($a_content, $a_add_class="")
$a_content
Definition: workflow.php:93
Grouped list GUI class.