This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/tests/groups/basics/listGroups.php

11 lines
199 B
PHP
Raw Permalink Normal View History

<?php
require_once("../../../config/dmsDefaults.php");
require_once(KT_LIB_DIR . '/groups/GroupUtil.php');
foreach (GroupUtil::listGroups() as $oGroup) {
print $oGroup->getName() . "\n";
}
?>