PHP code example of sudhaus7 / sudhaus7-wizard

1. Go to this page and download the library: Download sudhaus7/sudhaus7-wizard library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sudhaus7 / sudhaus7-wizard example snippets


use SUDHAUS7\Sudhaus7Wizard\CreateProcess;

protected ?CreateProcess $createProcess = null;

public function getCreateProcess(): CreateProcess
{
    if ($this->createProcess === null) {
        throw new \InvalidArgumentException('Create Process must be defined', 1715795482);
    }
    return $this->createProcess;
}

public function setCreateProcess( CreateProcess $createProcess ): void
{
    $this->createProcess = $createProcess;
}


public function getTemplateBackendUser(CreateProcess $pObj): array;
public function getTemplateBackendUserGroup(CreateProcess $pObj): array;



public function modifyRecordTCA(array $TCA): array
{
    return $TCA;
}