示例#1
0
        <td><?php 
echo _("Anzahl eigener Materialien");
?>
</td>
        <td><?php 
echo LernmarktplatzMaterial::countBySQL("host_id IS NULL");
?>
</td>
    </tr>
    <tr>
        <td><?php 
echo _("Anzahl Materialien von anderen Servern");
?>
</td>
        <td><?php 
echo LernmarktplatzMaterial::countBySQL("host_id IS NOT NULL");
?>
</td>
    </tr>
</table>

<h2><?php 
echo _("API-Endpoints");
?>
</h2>

<ul class="clean">
<? foreach ($reflection->getMethods(ReflectionMethod::IS_PUBLIC) as $method) : ?>
    <? if (stripos($method->name, "_action") === strlen($method->name) - 7) : ?>
        <? $name = substr($method->name, 0, stripos($method->name, "_action")) ?>
        <? if (!in_array($name, array("render", "map", "index"))) : ?>