truonglv
Well-known member
As title. If you used namespace on Tools Rebuild you can't do.
Because its hardcode:
I don't find any way to extends that. Hope you can fixed that
Because its hardcode:
PHP:
public static function create($class)
{
if (strpos($class, '_') === false)
{
$class = 'XenForo_Deferred_' . $class;
}
$class = XenForo_Application::resolveDynamicClass($class);
$object = new $class();
if (!($object instanceof XenForo_Deferred_Abstract))
{
return false;
}
return $object;
}
I don't find any way to extends that. Hope you can fixed that