We intend to display the number of edits across all wikis from the IP on both the infobox and popup.
AC
- The number of edits across all wikis from the IP is provided by the IP Info APIs
Notes
- The value can be retrieved from the ipinfo_ip_changes table with the following:
$centralDB = 'wikishared'; $ipHex = IPUtils::toHex( $ip ); $n = MediaWikiServices::getInstance() ->getDBLoadBalancerFactory() ->getMainLB( $centralDB ) ->getConnection( ILoadBalancer::DB_REPLICA ) ->selectRowCount( '*', 'ipinfo_ip_changes', [ 'ipc_ip_hex' => $ipHex, ] );