Source for file Group.php
Documentation is available at Group.php
require_once 'index.php';
for ($i = 1; $i < 20; $i++ ) {
$data = array ('group_define_name' => 'GROUP'. rand());
$groupId = $admin->perm ->addGroup ($data);
if ($groupId === false ) {
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
echo 'Created Group Id <strong>'. $groupId. '</strong><br />';
echo 'All the groups:<br />';
$groups = $admin->perm ->getGroups ();
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
} elseif (empty ($groups)) {
echo 'No groups were found, thus we\'ve halted the rest of the test<br />';
Var_Dump ::display ($groups);
$filters = array ('group_id' => $groups[$id]['group_id']);
$removed = $admin->perm ->removeGroup ($filters);
if ($removed === false ) {
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
echo '<strong>' . $groups[$id]['group_id'] . '</strong> was deleted<br />';
'group_id' => $groups[$id]['group_id'],
$removed = $admin->perm ->removeGroup ($filters);
if ($removed === false ) {
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
echo '<strong>' . $groups[$id]['group_id'] . '</strong> was deleted and all its child groups<br />';
$filters = array ('group_id' => $groups[$id]['group_id']);
$data = array ('group_define_name' => 'GROUP_' . $groups[$id]['group_id'] . '_UPDATED');
$updated = $admin->perm ->updateGroup ($data, $filters);
if ($updated === false ) {
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
echo '<strong>' . $groups[$id]['group_id'] . '</strong> was updated<br />';
$params = array ('filters' => array ('group_id' => $groups[$id]['group_id']));
$group = $admin->perm ->getGroups ($params);
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
} elseif (empty ($group)) {
echo 'No groups were found<br />';
Var_Dump ::display ($group);
echo 'All the groups:<br />';
$groups = $admin->perm ->getGroups ();
echo '<strong>Error on line: '.__LINE__. '</strong><br />';
} elseif (empty ($groups)) {
echo 'No groups were found<br />';
Var_Dump ::display ($groups);
Documentation generated on Mon, 11 Mar 2019 14:16:44 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|