L

Entity Relations

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

Guest

Can somebody please help me understand what I have done wrong here?

I have the following class extension saved in LifeSpot/ThreadSummary/XF/Entity/Thread.php:

PHP:
Code:
<?php
namespace LifeSpot\ThreadSummary\XF\Entity;
use XF\Mvc\Entity\Structure;
use XF\Mvc\Entity\Entity;
class Thread extends XFCP_Thread
{
    public static function getStructure(Structure $structure)
    {
        $structure = parent::getStructure($structure);
        $structure->relations['Summary'] = [
            'entity'...

Read more

Continue reading...
 
Back
Top Bottom