Files
luos/workflow/engine/services/rest/Application.php

19 lines
434 B
PHP
Raw Normal View History

<?php
class Application
{
protected function get($id = null)
{
if (is_null($id)) {
// getting all records.
G::loadClass('applications');
$app->getAll($userUid, $start=null, $limit=null, $action=null);
} else {
// get a specific record.
G::loadClass('wsBase');
$case = new wsBase();
$case->getCaseInfo($id);
}
}
}