MetaModels\BackendIntegration\InputScreen\InputScreen::__construct PHP Method

__construct() public method

Create a new instance.
public __construct ( MetaModels\IMetaModelsServiceContainer $container, array $data, array $propertyRows, array $conditions, array $groupSort )
$container MetaModels\IMetaModelsServiceContainer The service container.
$data array The information about the input screen.
$propertyRows array The information about all contained properties.
$conditions array The property condition information.
$groupSort array The grouping and sorting information.
    public function __construct($container, $data, $propertyRows, $conditions, $groupSort)
    {
        $this->data = $data;
        $this->container = $container;
        $this->transformConditions($conditions);
        $this->translateRows($propertyRows);
        $this->transformGroupSort($groupSort);
    }