X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fdrupalmoduleupgrader%2Fsrc%2FPlugin%2FDMU%2FConverter%2FFunctions%2FUserLoad.php;fp=web%2Fmodules%2Fcontrib%2Fdrupalmoduleupgrader%2Fsrc%2FPlugin%2FDMU%2FConverter%2FFunctions%2FUserLoad.php;h=7ff09735b43478f67cf3cd628f58fad095f9a406;hp=0000000000000000000000000000000000000000;hb=8acec36f19c470dfcda1ae2336826a782f41874c;hpb=e0411c4e83ba0d079034db83c3f7f55be24a0e35 diff --git a/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/UserLoad.php b/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/UserLoad.php new file mode 100644 index 000000000..7ff09735b --- /dev/null +++ b/web/modules/contrib/drupalmoduleupgrader/src/Plugin/DMU/Converter/Functions/UserLoad.php @@ -0,0 +1,39 @@ +getArguments(); + + // If there were three arguments, the call is affecting the internal + // user_load() cache. Unfortunately, it's pretty much impossible to + // reliably determine whether or not they wanted to reset the cache, + // so let's just leave a FIXME. + if (sizeof($arguments) == 2) { + $this->buildFixMe('To reset the user cache, use EntityStorageInterface::resetCache().')->insertBefore($call); + } + + return ClassMethodCallNode::create('\Drupal', 'entityManager') + ->appendMethodCall('getStorage') + ->appendArgument('user') + ->appendMethodCall('load') + ->appendArgument(clone $arguments[0]); + } + +}