Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Behavior/Likeable.php
<?php

namespace XF\Behavior;

use
XF\Mvc\Entity\Behavior;

class
Likeable extends Behavior
{
    protected function
getDefaultConfig()
    {
        return [
           
'stateField' => null
       
];
    }

    protected function
verifyConfig()
    {
        if (!
$this->contentType())
        {
            throw new \
LogicException("Structure must provide a contentType value");
        }

        if (
$this->config['stateField'] === null)
        {
            throw new \
LogicException("stateField config must be overridden; if no field is present, use an empty string");
        }
    }

    public function
postSave()
    {
        if (
$this->config['stateField'])
        {
           
$visibilityChange = $this->entity->isStateChanged($this->config['stateField'], 'visible');

            if (
$this->entity->isUpdate() && ($visibilityChange == 'enter' || $visibilityChange == 'leave'))
            {
               
/** @var \XF\Repository\LikedContent $likeRepo */
               
$likeRepo = $this->repository('XF:LikedContent');
               
$likeRepo->recalculateLikeIsCounted($this->contentType(), $this->id());
            }
        }
    }

    public function
postDelete()
    {
       
/** @var \XF\Repository\LikedContent $likeRepo */
       
$likeRepo = $this->repository('XF:LikedContent');
       
$likeRepo->fastDeleteLikes($this->contentType(), $this->id());
    }
}