I am using this code to create a thread/post:
This works fine. Now i want to add an attachment to the post before saving (or after).
I have spent hours trying to figure out how to add attachments to the message without any luck. Anybody can point me i the right direction?
PHP:
\XF::asVisitor($user, function () use ($forum, $user) {
$creator = \XF::service('XF:Thread\Creator', $forum);
$creator->setContent("Test message", "Content of Test message");
$creator->setIsAutomated();
// ...
$creator->save();
}
This works fine. Now i want to add an attachment to the post before saving (or after).
I have spent hours trying to figure out how to add attachments to the message without any luck. Anybody can point me i the right direction?