├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── example ├── config │ └── web.php ├── controllers │ └── SiteController.php ├── models │ ├── BlueForm.php │ ├── FinalForm.php │ ├── GreenForm.php │ ├── Step1Form.php │ ├── WelcomeForm.php │ └── Wizflow.php └── views │ ├── layouts │ └── main.php │ └── site │ ├── finish.php │ ├── index.php │ ├── step-1.php │ ├── step-blue.php │ ├── step-final.php │ ├── step-green.php │ └── step-welcome.php ├── src ├── WizardPlayAction.php ├── WizflowManager.php └── WizflowModelInterface.php ├── wizflow.graphml └── wizflow.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/composer.json -------------------------------------------------------------------------------- /example/config/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/config/web.php -------------------------------------------------------------------------------- /example/controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/controllers/SiteController.php -------------------------------------------------------------------------------- /example/models/BlueForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/BlueForm.php -------------------------------------------------------------------------------- /example/models/FinalForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/FinalForm.php -------------------------------------------------------------------------------- /example/models/GreenForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/GreenForm.php -------------------------------------------------------------------------------- /example/models/Step1Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/Step1Form.php -------------------------------------------------------------------------------- /example/models/WelcomeForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/WelcomeForm.php -------------------------------------------------------------------------------- /example/models/Wizflow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/models/Wizflow.php -------------------------------------------------------------------------------- /example/views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/layouts/main.php -------------------------------------------------------------------------------- /example/views/site/finish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/finish.php -------------------------------------------------------------------------------- /example/views/site/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/index.php -------------------------------------------------------------------------------- /example/views/site/step-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/step-1.php -------------------------------------------------------------------------------- /example/views/site/step-blue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/step-blue.php -------------------------------------------------------------------------------- /example/views/site/step-final.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/step-final.php -------------------------------------------------------------------------------- /example/views/site/step-green.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/step-green.php -------------------------------------------------------------------------------- /example/views/site/step-welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/example/views/site/step-welcome.php -------------------------------------------------------------------------------- /src/WizardPlayAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/src/WizardPlayAction.php -------------------------------------------------------------------------------- /src/WizflowManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/src/WizflowManager.php -------------------------------------------------------------------------------- /src/WizflowModelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/src/WizflowModelInterface.php -------------------------------------------------------------------------------- /wizflow.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/wizflow.graphml -------------------------------------------------------------------------------- /wizflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raoul2000/yii2-wizflow/HEAD/wizflow.png --------------------------------------------------------------------------------