Ejemplo n.º 1
0
    $output = array();
    if ($handle = opendir($dir)) {
        while (false !== ($entry = readdir($handle))) {
            if ($entry != '.' && $entry != '..') {
                if (preg_match('/.*\\.php/', $entry) && !in_array($entry, $exclude)) {
                    try {
                        include_once "{$dir}/{$entry}";
                        $cls = str_replace('.php', '', $entry);
                        $class = new ReflectionClass($cls);
                        $methods = $class->getMethods(ReflectionMethod::IS_PUBLIC);
                        $buffer = array();
                        foreach ($methods as $method) {
                            if (!preg_match('/^__/', $method->getName())) {
                                $buffer[$method->getName()] = array('len' => $method->getNumberOfParameters(), 'formHandler' => preg_match('/Form$/', $method->getName()));
                            }
                        }
                        unset($class);
                        $output[$cls]['methods'] = $buffer;
                    } catch (Exception $e) {
                    }
                }
            }
        }
        closedir($handle);
    }
    return $output;
}
$dir = dirname(dirname(__FILE__)) . '/data';
$exclude = array();
$API = getDirActions($dir, $exclude);
Ejemplo n.º 2
0
Archivo: api.php Proyecto: igez/gaiaehr
function getRemotingAPI($module = null, $exclude = array())
{
    $url = !isset($module) ? 'direct/router.php' : "direct/router.php?module={$module}";
    $dir = !isset($module) ? '../data' : "../modules/{$module}/data";
    return json_encode(array('url' => $url, 'type' => 'remoting', 'actions' => getDirActions($dir, $exclude), 'namespace' => 'Remote', 'timeout' => 3600));
}