Files
luos/workflow/engine/classes/DashletInterface.php

10 lines
213 B
PHP
Raw Normal View History

2011-10-28 12:20:45 -04:00
<?php
interface DashletInterface {
public static function getAdditionalFields($className);
2012-01-03 18:31:15 -04:00
public static function getXTemplate($className);
2011-10-31 14:44:22 -04:00
public function setup($dasInsUid);
2011-10-28 12:20:45 -04:00
public function render();
}