php-vfxapply/src/Plugin.php

22 lines
466 B
PHP

<?php
namespace VfxApply;
class Plugin
{
public function createDialog($type, $title=null)
{
switch ($type) {
case DIALOG_PROGRESS:
return new Dialog\ProgressDialog($title);
default:
throw new \Exception("Error, undefined dialog type {$type}");
}
}
public function createProcess($command, callable $callback)
{
return new Process($command, $callback);
}
}