FormCallbackToMethod.php in Drupal 7 to 8/9 Module Upgrader 8
File
src/Plugin/DMU/Fixer/FormCallbackToMethod.php
View source
<?php
namespace Drupal\drupalmoduleupgrader\Plugin\DMU\Fixer;
use Drupal\drupalmoduleupgrader\FixerBase;
class FormCallbackToMethod extends FixerBase {
public function execute() {
$callback = $this->target
->getIndexer('function')
->get($this->configuration['callback']);
list($class, $method_name) = explode('::', $this->configuration['destination']);
$class = $this->target
->getIndexer('class')
->get($class);
$method = $callback
->cloneAsMethodOf($class)
->setName($method_name);
$form_interface = new \ReflectionClass('\\Drupal\\Core\\Form\\FormInterface');
if ($form_interface
->hasMethod($method_name)) {
$method
->matchReflector($form_interface
->getMethod($method_name));
}
$this->target
->save($method);
}
}