/**
* Logs the viewing of an attachment.
*
* @param integer $attachmentId
*/
public function logAttachmentView($attachmentId)
{
$this->_getDb()->query('
INSERT ' . (XenForo_Application::get('options')->enableInsertDelayed ? 'DELAYED' : '') . ' INTO xf_attachment_view
(attachment_id)
VALUES
(?)
', $attachmentId);
}