So I built an add-on (slightly modified Notes add-on from Building with XF 2 videos).
Spoiler: Entity
PHP:
Read more
Читать далее...
Spoiler: Entity
PHP:
Код:
<?php
namespace AV\Notes\Entity;
use XF\Mvc\Entity\Entity;
use XF\MVC\Entity\Structure;
class Note extends Entity
{
public static function getStructure(Structure $structure): Structure
{
$structure->table = 'av_notes_note';
$structure->shortName = 'AV\Notes:Note';
$structure->contentType = 'av_notes_note';
$structure->primaryKey = 'note_id'...
Read more
Читать далее...