NEW Add update extension hooks for LinkFormFactory subclasses

This commit is contained in:
Robbie Averill 2018-09-25 16:48:49 +02:00
parent 5bfc37ff4b
commit 12907271ff

View File

@ -48,6 +48,8 @@ class InternalLinkFormFactory extends LinkFormFactory
$fields->insertAfter('PageID', TextField::create('Text', _t(__CLASS__.'.LINKTEXT', 'Link text')));
}
$this->extend('updateFormFields', $fields, $controller, $name, $context);
return $fields;
}