Here is the solution for splisting tab php7.2 deprecate create_function() here have to use anonymous function
have to replace this under module->splistingtab->splistingtab.php
usort ($list, function ($a, $b) {return strnatcasecmp( $a["name"], $b["name"]);});
else
usort ($list, function ($a, $b) {return strnatcasecmp( $b["name"], $a["name"]);});
break;
case 'id_category':
if ($cat_ordering == 'ASC')
usort ($list, function ($a, $b) {return $a["id_category"] > $b["id_category"];});
else
usort ($list, function ($a, $b) {return $a["id_category"] < $b["id_category"];});