PHP code example of apdev / configurator-php

1. Go to this page and download the library: Download apdev/configurator-php 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/ */

    

apdev / configurator-php example snippets



session_start(); //IMP

use Configurator\Manager;

if( is_null($_SESSION['filled_data']) ){
  $_SESSION['filled_data'] = [];
}

$input = $_POST; // or $_GET
$filled = $_SESSION['filled_data']; // or cookies

$config = [
	//step 1
	[
		'fields' => [
			//field 1
			[
				'name' => 'field_1_name',
				'type' => 'radio',
				//optional condition
				'hide_if' => [
					[ 'other_field_name' => 'valueX' ]
				],
				'choices' => [
					//choice 1
					[
						'label' => 'Choice 1 Label',
						'value' => 'A',
						//optional conditions
						'hide_if' => [
							[ 'field_name' => 'valueX' ],//OR
							[ 'field_name' => 'valueY' ],
							...
						],
					],
					//choice 2
					[
						'label' => 'Choice 2 Label',
						'value' => 'B',
					],

					//additional choices
					...
				],
			],

			//additional fields
			...
		],
	],

	//additional steps
	...
];

//create instance
$configurator = new Manager($config,$input,$filled);
//base url should be always set to current url (without params)
$configurator->setBaseUrl("https://base.url/configurator-page");

//update filled data
$_SESSION['filled_data'] = $configurator->filled();

if($configurator->isCompleted()){
  // do stuff with filled data
}


$step = $configurator->current(); //get current step

//utility functions
$configurator->getStepsNumber(); //gets total steps
$configurator->getCurrentStepNumber();
$configurator->isFirstStep();
$configurator->isLastStep();
$configurator->getPrevLink();
$configurator->getResetLink();
$configurator->getFormAction();



$ composer