blob: 512e4e33e76fb85066a15c50a558b8e0f8578425 [file] [log] [blame]
<?php
// Set up database connection.
$db = ezcDbFactory::create( 'mysql://test@localhost/test' );
// Set up database-based workflow executer.
$execution = new ezcWorkflowDatabaseExecution( $db, $id );
// Resume workflow execution.
$execution->resume(
array( 'choice' => true )
);
?>