ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
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(
32  $a_content,
33  $a_href = '',
34  $a_target = '',
35  $a_onclick = '',
36  $a_add_class = '',
37  $a_id = '',
38  $a_ttip = '',
39  $a_tt_my = 'right center',
40  $a_tt_at = 'left center',
41  $a_tt_use_htmlspecialchars = true
42  ) {
43  $this->count++;
44  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
45  }
46 
47 
52  public function addGroupHeader($a_content, $a_add_class = "")
53  {
54  $this->count++;
55  parent::addGroupHeader($a_content, $a_add_class); // TODO: Change the autogenerated stub
56  }
57 
58 
59  public function addSeparator()
60  {
61  $this->count++;
62  parent::addSeparator(); // TODO: Change the autogenerated stub
63  }
64 
65 
69  public function getCount()
70  {
71  return $this->count;
72  }
73 
74 
78  public function hasItems()
79  {
80  return $this->getCount() > 0;
81  }
82 }
Class ilCloudGroupedListGUI.
addGroupHeader($a_content, $a_add_class="")
$a_content
Definition: workflow.php:93
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)
Grouped list GUI class.