Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > 7a483905ebfa190d6def9eab37098d58 > files > 5

ezcomponents-WorkflowDatabaseTiein-1.4-4.mga3.noarch.rpm

<?php
// Set up database connection.
$db = ezcDbFactory::create( 'mysql://test@localhost/test' );

// Set up database-based workflow executer.
$execution = new ezcWorkflowDatabaseExecution( $db, $id );

// Cancel workflow execution.
$execution->cancel();
?>