ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilCloudGroupedListGUI.php
Go to the documentation of this file.
1 <?php
2 
11 
15  protected $count = 0;
16 
17 
30  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) {
31  $this->count ++;
32  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
33  }
34 
35 
40  public function addGroupHeader($a_content, $a_add_class = "") {
41  $this->count ++;
42  parent::addGroupHeader($a_content, $a_add_class); // TODO: Change the autogenerated stub
43  }
44 
45 
46  public function addSeparator() {
47  $this->count ++;
48  parent::addSeparator(); // TODO: Change the autogenerated stub
49  }
50 
51 
55  public function getCount() {
56  return $this->count;
57  }
58 
59 
63  public function hasItems() {
64  return $this->getCount() > 0;
65  }
66 }
67 
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:94
Grouped list GUI class.