FluidTYPO3\Fluidpages\Backend\BackendLayout::preProcessBackendLayoutPageUid PHP Method

preProcessBackendLayoutPageUid() public method

Preprocesses the page id used to detect the backend layout record
public preProcessBackendLayoutPageUid ( integer &$id ) : void
$id integer Starting page id when parsing the rootline
return void
    public function preProcessBackendLayoutPageUid(&$id)
    {
    }

Usage Example

 /**
  * Gets the selected backend layout
  *
  * @param integer $id
  * @return array|NULL $backendLayout
  */
 public function getSelectedBackendLayout($id)
 {
     $this->backendLayout->preProcessBackendLayoutPageUid($id);
     $backendLayout = parent::getSelectedBackendLayout($id);
     $this->backendLayout->postProcessBackendLayout($id, $backendLayout);
     return array('__config' => $backendLayout['__config'], '__items' => $backendLayout['__items'], '__colPosList' => $backendLayout['__colPosList']);
 }
All Usage Examples Of FluidTYPO3\Fluidpages\Backend\BackendLayout::preProcessBackendLayoutPageUid