Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Import/Data/ThreadPrefixGroup.php
<?php

namespace XF\Import\Data;

class
ThreadPrefixGroup extends AbstractEmulatedData
{
    protected
$title = '';

    public function
getImportType()
    {
        return
'thread_prefix_group';
    }

    public function
getEntityShortName()
    {
        return
'XF:ThreadPrefixGroup';
    }

    public function
setTitle($title)
    {
       
$this->title = $title;
    }

    protected function
postSave($oldId, $newId)
    {
       
/** @var \XF\Entity\ThreadPrefixGroup $group */
       
$group = $this->em()->find('XF:ThreadPrefixGroup', $newId);
        if (
$group)
        {
           
$this->insertMasterPhrase($group->getPhraseName(), $this->title);

           
$this->em()->detachEntity($group);
        }
    }
}