ILIAS  release_8 Revision v8.24
class.ilADTLocationDefinition.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
6{
7 public function isComparableTo(ilADT $a_adt): bool
8 {
9 // has to be location-based
10 return ($a_adt instanceof ilADTLocation);
11 }
12}
ADT definition base class.
isComparableTo(ilADT $a_adt)
Check if given ADT is comparable to self.
ADT base class.
Definition: class.ilADT.php:12