MesterPerfect
Active member
I can fetch number of resources and number downloads using this code
But I cannot modify it with attachments
PHP:
$db = \XF::db();
// run query
$totalResources = $db->fetchOne("
SELECT COUNT(resource_id)
FROM xf_rm_resource
");
// run query
$totalDownloads = $db->fetchOne("
SELECT SUM(download_count)
FROM xf_rm_resource
");
But I cannot modify it with attachments