mc-cms-namelessmc/modules/Forum/classes/Events/PreTopicEditEvent.php
Partydragen 370430256f
Remove deprecated event system (#3631)
* Remove old event system & Convert renderPost event

* Remove old event system

* Misc

* Convert Custom Pages to use new event system

* Change RenderPost to RenderContent

* Convert profile posts and messaging

* All events converted

* Fixes

* Fixes

* Add tag support in Profile Posts & Messaging

* Execute rendercreate for profile post reply

* Update webhooks

* Remove return function

* Remove array response

* Remove more array response

* Remove fallback webhooks

* Test phpstan

* Fix phpdoc

* Remove name() & description()
2025-05-02 10:19:52 -07:00

20 lines
No EOL
468 B
PHP

<?php
class PreTopicEditEvent extends AbstractEvent {
public string $content;
public User $user;
public int $topic_id;
public int $post_id;
public function __construct(string $content, User $user, int $topic_id, int $post_id) {
$this->content = $content;
$this->user = $user;
$this->topic_id = $topic_id;
$this->post_id = $post_id;
}
public static function internal(): bool {
return true;
}
}