1 | <?php |
||
18 | class AssetList extends Assets |
||
19 | { |
||
20 | use ElementListTrait; |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function init() |
||
26 | { |
||
27 | parent::init(); |
||
28 | |||
29 | $this->inputTemplate = 'element-lists/_components/fieldtypes/ElementSource'; |
||
30 | $this->inputJsClass = 'Craft.NestedElementIndexSelectInput'; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | public static function displayName(): string |
||
40 | } |
||
41 |