53 lines
1.0 KiB
PHP
Executable File
53 lines
1.0 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Thelia\Model;
|
|
|
|
use Thelia\Model\Base\ContentDocument as BaseContentDocument;
|
|
use Propel\Runtime\Connection\ConnectionInterface;
|
|
|
|
class ContentDocument extends BaseContentDocument
|
|
{
|
|
use \Thelia\Model\Tools\PositionManagementTrait;
|
|
|
|
/**
|
|
* Calculate next position relative to our parent
|
|
*/
|
|
protected function addCriteriaToPositionQuery($query) {
|
|
$query->filterByContent($this->getContent());
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function preInsert(ConnectionInterface $con = null)
|
|
{
|
|
$this->setPosition($this->getNextPosition());
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Set Document parent id
|
|
*
|
|
* @param int $parentId parent id
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setParentId($parentId)
|
|
{
|
|
$this->setContentId($parentId);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get Document parent id
|
|
*
|
|
* @return int parent id
|
|
*/
|
|
public function getParentId()
|
|
{
|
|
return $this->getContentId();
|
|
}
|
|
}
|