ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
RepositoryObject.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Component\Card;
22 
26 
31 interface RepositoryObject extends Card
32 {
36  public function withObjectIcon(Icon $icon): RepositoryObject;
37 
41  public function getObjectIcon(): ?Icon;
42 
46  public function withProgress(ProgressMeter $progress_meter): RepositoryObject;
47 
51  public function getProgress(): ?ProgressMeter;
52 
56  public function withCertificateIcon(bool $certificate_icon): RepositoryObject;
57 
61  public function getCertificateIcon(): ?bool;
62 
66  public function withActions(Dropdown $dropdown): RepositoryObject;
67 
71  public function getActions(): ?Dropdown;
72 }
getProgress()
Get the ProgressMeter of the card.
This describes commonalities between all types of Dropdowns.
Definition: Dropdown.php:34
withActions(Dropdown $dropdown)
Get a RepositoryObject card like this, but with an additional UI Dropdown object. ...
getObjectIcon()
Returns an UI Icon which represents the repository object type.
withProgress(ProgressMeter $progress_meter)
Get a RepositoryObject card like this, but with an additional UI ProgressMeter object.
getCertificateIcon()
Get the certificate icon.
getActions()
get the dropdown actions
withObjectIcon(Icon $icon)
Get a RepositoryObject card like this, but with an additional UI Icon representing the repository obj...
withCertificateIcon(bool $certificate_icon)
Get a RepositoryObject card like this, but with an additional certificate outlined icon...