X
Xon
Guest
This function has this this statement:
PHP:
Suppose the post position updates from 1 => 2, and it was made visible. This will result in multiple posts with position value of 2.
The newly made visible post will have a position of 2 and the post with a previous position...
Read more
Continue reading...
PHP:
Code:
protected function postMadeVisible()
{
if ($this->isChanged('position'))
{
// if we've updated the position, we need to trust what we had is accurate...
$basePosition = $this->getExistingValue('position');
}
Suppose the post position updates from 1 => 2, and it was made visible. This will result in multiple posts with position value of 2.
The newly made visible post will have a position of 2 and the post with a previous position...
Read more
Continue reading...