ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\UI\Component\Link Namespace Reference

Data Structures

interface  Bulky
 Bulky Link - a visually enriched link that looks like a button but behaves like a link. More...
 
interface  Factory
 Link factory. More...
 
interface  IsRelationship
 Marker interface for relationship enums. More...
 
interface  Link
 Link base interface. More...
 
interface  Standard
 Standard link. More...
 

Enumerations

enum  Relationship : string implements IsRelationship
 Note that not all valid values of the rel-attribute of anchor tags are included here (see https://html.spec.whatwg.org/multipage/links.html#linkTypes), as some of them are reserved for internal use by the KS. More...
 

Enumeration Type Documentation

◆ Relationship

Note that not all valid values of the rel-attribute of anchor tags are included here (see https://html.spec.whatwg.org/multipage/links.html#linkTypes), as some of them are reserved for internal use by the KS.

Definition at line 28 of file Relationship.php.

29{
30 case ALTERNATE = 'alternate';
31 case AUTHOR = 'author';
32 case BOOKMARK = 'bookmark';
33 case EXTERNAL = 'external';
34 case LICENSE = 'license';
35 case NOFOLLOW = 'nofollow';
36 case NOOPENER = 'noopener';
37 case NOREFERRER = 'noreferrer';
38}