ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ElementsInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
27{
28 public function name(
29 BaseElementInterface $element,
30 bool $plural = false
31 ): string;
32
33 public function nameWithParents(
34 BaseElementInterface $element,
35 ?BaseElementInterface $cut_off = null,
36 bool $plural = false,
37 bool $skip_initial = false
38 ): string;
39}
nameWithParents(BaseElementInterface $element, ?BaseElementInterface $cut_off=null, bool $plural=false, bool $skip_initial=false)
name(BaseElementInterface $element, bool $plural=false)