PHP code example of winzou / state-machine-bundle
1. Go to this page and download the library: Download winzou/state-machine-bundle 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/ */
winzou / state-machine-bundle example snippets
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new winzou\Bundle\StateMachineBundle\winzouStateMachineBundle(),
);
}
php
public function myAwesomeAction($id, \SM\Factory\Factory $factory)
{
// Get your domain object
$article = $this->getRepository('MyAwesomeBundle:Article')->find($id);
// Get the state machine for this object, and graph called "simple"
$articleSM = $factory->get($article, 'simple');
}