HOR-3700-RG Corrected observations

This commit is contained in:
Roly Rudy Gutierrez Pinto
2017-08-21 11:14:27 -04:00
parent bfe2b7ec38
commit be69c8cd69
3 changed files with 127 additions and 219 deletions

View File

@@ -1,78 +1,47 @@
<?php <?php
/**
* groups_Tree.php $ROL_UID = $_GET['ROL_UID'];
* global $RBAC;
* ProcessMaker Open Source Edition $oDataset = $RBAC->getAllPermissions($ROL_UID, $RBAC->sSystem);
* Copyright (C) 2004 - 2008 Colosa Inc.23 $roleCode = $RBAC->getRoleCode($ROL_UID);
*
* This program is free software: you can redistribute it and/or modify $tree = new PmTree();
* it under the terms of the GNU Affero General Public License as $tree->name = 'Users';
* published by the Free Software Foundation, either version 3 of the $tree->nodeType = "base";
* License, or (at your option) any later version. $tree->width = "350px";
* $tree->value = '
* This program is distributed in the hope that it will be useful, <div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
* but WITHOUT ANY WARRANTY; without even the implied warranty of <div class="boxContentBlue">
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the <table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0">
* GNU Affero General Public License for more details. <tr>
* <td class="userGroupTitle">' . G::LoadTranslation('ID_ASSIGN_THE_ROLE') . ': '.$roleCode.'</td>
* You should have received a copy of the GNU Affero General Public License </tr>
* along with this program. If not, see <http://www.gnu.org/licenses/>. </table>
* </div>
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., <div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
* Coral Gables, FL, 33134, USA, or email info@colosa.com. <div class="userGroupLink"><a href="#" onclick="backPermissions(\''.$_GET['ROL_UID'].'\');return false;">' . G::LoadTranslation('ID_BACK_PERMISSIONS_LIST').'</a></div>';
*
*/ $tree->showSign = false;
/** $oDataset->next();
* @Description This is the View of all groups from a determinated user while ($aRow = $oDataset->getRow()) {
* @author Erik Amaru Ortiz <erik@colosa.com> $ID_ASSIGN = G::LoadTranslation('ID_ASSIGN');
* @Date 24/04/2008
* @LastModification none $CODE = $aRow['PER_CODE'];
*/ $UID = $aRow['PER_UID'];
$ROL_UID = $_GET['ROL_UID']; $html = "
global $RBAC; <table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
$oDataset = $RBAC->getAllPermissions($ROL_UID,$RBAC->sSystem); <tr>
$roleCode = $RBAC->getRoleCode($ROL_UID); <td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$CODE}</td>
<td class='treeNode' style='border:0px;background-color:transparent;'>[<a href=\"javascript:assignPermissionToRole('{$ROL_UID}','{$UID}');\">{$ID_ASSIGN}</a>]</td>
$tree = new PmTree(); </tr>
$tree->name = 'Users'; </table>";
$tree->nodeType = "base";
$tree->width = "350px"; $ch = &$tree->addChild('', $html, array('nodeType' => 'child'));
$tree->value = ' $ch->point = '<img src="/images/users.png" />';
<div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="boxContentBlue"> $oDataset->next();
<table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0"> }
<tr>
<td class="userGroupTitle">' . G::LoadTranslation('ID_ASSIGN_THE_ROLE') . ': '.$roleCode.'</td> print($tree->render());
</tr>
</table>
</div>
<div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="userGroupLink"><a href="#" onclick="backPermissions(\''.$_GET['ROL_UID'].'\');return false;">' . G::LoadTranslation('ID_BACK_PERMISSIONS_LIST').'</a></div>';
$tree->showSign = false;
$oDataset->next();
while ($aRow = $oDataset->getRow()) {
$ID_ASSIGN = G::LoadTranslation('ID_ASSIGN');
$CODE = $aRow['PER_CODE'];
$UID = $aRow['PER_UID'];
$html = "
<table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
<tr>
<td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$CODE}</td>
<td class='treeNode' style='border:0px;background-color:transparent;'>[<a href=\"javascript:assignPermissionToRole('{$ROL_UID}','{$UID}');\">{$ID_ASSIGN}</a>]</td>
</tr>
</table>";
$ch = &$tree->addChild('', $html, array('nodeType' => 'child'));
$ch->point = '<img src="/images/users.png" />';
$oDataset->next();
}
print ($tree->render());

View File

@@ -1,78 +1,47 @@
<?php <?php
/**
* groups_Tree.php
*
* ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/
/** $ROL_UID = $_GET['ROL_UID'];
* @Description This is the View of all groups from a determinated user global $RBAC;
* @author Erik Amaru Ortiz <erik@colosa.com> $oDataset = $RBAC->getAllUsers($ROL_UID);
* @Date 24/04/2008 $roleCode = $RBAC->getRoleCode($ROL_UID);
* @LastModification none
*/
$ROL_UID = $_GET['ROL_UID']; $tree = new PmTree();
global $RBAC; $tree->name = 'Users';
$oDataset = $RBAC->getAllUsers($ROL_UID); $tree->nodeType = "base";
$roleCode = $RBAC->getRoleCode($ROL_UID); $tree->width = "350px";
$tree->value = '
<div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="boxContentBlue">
<table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0">
<tr>
<td class="userGroupTitle">' . G::LoadTranslation('ID_ASSIGN_THE_ROLE') . ': '.$roleCode.'</td>
</tr>
</table>
</div>
<div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="userGroupLink"><a href="#" onclick="backUsers(\''.$_GET['ROL_UID'].'\');return false;">' . G::LoadTranslation('ID_BACK_TO_USERS_LIST') . '</a></div>';
$tree = new PmTree(); $tree->showSign = false;
$tree->name = 'Users';
$tree->nodeType = "base";
$tree->width = "350px";
$tree->value = '
<div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="boxContentBlue">
<table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0">
<tr>
<td class="userGroupTitle">' . G::LoadTranslation('ID_ASSIGN_THE_ROLE') . ': '.$roleCode.'</td>
</tr>
</table>
</div>
<div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="userGroupLink"><a href="#" onclick="backUsers(\''.$_GET['ROL_UID'].'\');return false;">' . G::LoadTranslation('ID_BACK_TO_USERS_LIST') . '</a></div>';
$tree->showSign = false; $oDataset->next();
while ($aRow = $oDataset->getRow()) {
$ID_ASSIGN = G::LoadTranslation('ID_ASSIGN');
$oDataset->next(); $user = '['.$aRow['USR_USERNAME'].'] '.$aRow['USR_FIRSTNAME'].' '.$aRow['USR_LASTNAME'];
while ($aRow = $oDataset->getRow()) { $USR_UID = $aRow['USR_UID'];
$ID_ASSIGN = G::LoadTranslation('ID_ASSIGN');
$user = '['.$aRow['USR_USERNAME'].'] '.$aRow['USR_FIRSTNAME'].' '.$aRow['USR_LASTNAME']; $html = "
$USR_UID = $aRow['USR_UID']; <table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
<tr>
<td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$user}</td>
<td class='treeNode' style='border:0px;background-color:transparent;'>[<a href=\"javascript:assignUserToRole('{$ROL_UID}','{$USR_UID}');\">{$ID_ASSIGN}</a>]</td>
</tr>
</table>";
$html = " $ch = &$tree->addChild('', $html, array('nodeType' => 'child'));
<table cellspacing='0' cellpadding='0' border='1' style='border:0px;'> $ch->point = '<img src="/images/users.png" />';
<tr>
<td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$user}</td>
<td class='treeNode' style='border:0px;background-color:transparent;'>[<a href=\"javascript:assignUserToRole('{$ROL_UID}','{$USR_UID}');\">{$ID_ASSIGN}</a>]</td>
</tr>
</table>";
$ch = &$tree->addChild('', $html, array('nodeType' => 'child')); $oDataset->next();
$ch->point = '<img src="/images/users.png" />'; }
$oDataset->next(); print($tree->render());
}
print ($tree->render());

View File

@@ -1,84 +1,54 @@
<?php <?php
/**
* groups_Tree.php
*
* ProcessMaker Open Source Edition
* Copyright (C) 2004 - 2008 Colosa Inc.23
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/
/** $ROL_UID = $_GET['ROL_UID'];
* @Description This is the View of all groups from a determinated user global $RBAC;
* @author Erik Amaru Ortiz <erik@colosa.com> $oDataset = $RBAC->getRoleUsers($ROL_UID);
* @Date 24/04/2008 $roleCode = $RBAC->getRoleCode($ROL_UID);
* @LastModification none
*/
$ROL_UID = $_GET['ROL_UID']; $tree = new PmTree();
global $RBAC; $tree->name = 'Users';
$oDataset = $RBAC->getRoleUsers($ROL_UID); $tree->nodeType = "base";
$roleCode = $RBAC->getRoleCode($ROL_UID); $tree->width = "350px";
$tree->value = '
<div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="boxContentBlue">
<table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0">
<tr>
<td class="userGroupTitle">' . G::LoadTranslation('ID_USER_WITH_ROLE') . ': '.$roleCode.'</td>
</tr>
</table>
</div>
<div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="userGroupLink"><a href="#" onclick="showUsersLoad(\''.$_GET['ROL_UID'].'\');return false;">'.G::LoadTranslation('ID_ASSIGN_ROLE').'</a></div>';
$tree = new PmTree(); $tree->showSign = false;
$tree->name = 'Users';
$tree->nodeType = "base";
$tree->width = "350px";
$tree->value = '
<div class="boxTopBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="boxContentBlue">
<table width="100%" style="margin:0px;" cellspacing="0" cellpadding="0">
<tr>
<td class="userGroupTitle">' . G::LoadTranslation('ID_USER_WITH_ROLE') . ': '.$roleCode.'</td>
</tr>
</table>
</div>
<div class="boxBottomBlue"><div class="a"></div><div class="b"></div><div class="c"></div></div>
<div class="userGroupLink"><a href="#" onclick="showUsersLoad(\''.$_GET['ROL_UID'].'\');return false;">'.G::LoadTranslation('ID_ASSIGN_ROLE').'</a></div>';
$tree->showSign = false; $oDataset->next();
while ($aRow = $oDataset->getRow()) {
$ID_DELETE = G::LoadTranslation('ID_REMOVE');
$un = ($aRow['USR_USERNAME'] != '')?$aRow['USR_USERNAME']:'none';
$user = '['.$un.'] '.$aRow['USR_FIRSTNAME'].' '.$aRow['USR_LASTNAME'];
$USR_UID = $aRow['USR_UID'];
$oDataset->next(); if ($USR_UID != "00000000000000000000000000000001") { #because the admin remove rol it doesn't posible
while ($aRow = $oDataset->getRow()) { $refer = "<a href=\"javascript:deleteUserRole('{$ROL_UID}','{$USR_UID}');\">{$ID_DELETE}</a>";
$ID_DELETE = G::LoadTranslation('ID_REMOVE'); } else {
$un = ($aRow['USR_USERNAME'] != '')?$aRow['USR_USERNAME']:'none'; $refer = "<font color='#CFCFCF'>{$ID_DELETE}</font>";
$user = '['.$un.'] '.$aRow['USR_FIRSTNAME'].' '.$aRow['USR_LASTNAME']; }
$USR_UID = $aRow['USR_UID'];
if($USR_UID != "00000000000000000000000000000001") { #because the admin remove rol it doesn't posible $html = "
$refer = "<a href=\"javascript:deleteUserRole('{$ROL_UID}','{$USR_UID}');\">{$ID_DELETE}</a>"; <table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
} else { <tr>
$refer = "<font color='#CFCFCF'>{$ID_DELETE}</font>"; <td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$user}</td>
} <td class='treeNode' style='border:0px;background-color:transparent;'>[$refer]</td>
</tr>
</table>";
$html = " $ch = &$tree->addChild('', $html, array('nodeType' => 'child'));
<table cellspacing='0' cellpadding='0' border='1' style='border:0px;'> $ch->point = '<img src="/images/users.png" />';
<tr>
<td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$user}</td>
<td class='treeNode' style='border:0px;background-color:transparent;'>[$refer]</td>
</tr>
</table>";
$ch = &$tree->addChild('', $html, array('nodeType' => 'child')); $oDataset->next();
$ch->point = '<img src="/images/users.png" />'; }
$oDataset->next();
}
print ($tree->render()); print($tree->render());