| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/Form/FormDataProvider/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/Form/FormDataProvider/DatabaseEffectivePid.php |
<?php
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Backend\Form\FormDataProvider;
use TYPO3\CMS\Backend\Form\FormDataProviderInterface;
/**
* Set effective pid we're working on
*/
class DatabaseEffectivePid implements FormDataProviderInterface
{
/**
* Effective pid is used to determine entry point for page ts and is also
* the pid where new records are stored later.
*
* @return array
*/
public function addData(array $result)
{
$effectivePid = 0;
if ($result['command'] === 'edit' && $result['tableName'] === 'pages') {
$effectivePid = $result['databaseRow']['uid'];
} elseif ($result['command'] === 'edit') {
$effectivePid = $result['databaseRow']['pid'];
} elseif ($result['command'] === 'new' && is_array($result['parentPageRow'])) {
$effectivePid = $result['parentPageRow']['uid'];
}
$result['effectivePid'] = (int)$effectivePid;
return $result;
}
}