當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Groups::getAllGroups方法代碼示例

本文整理匯總了PHP中Groups::getAllGroups方法的典型用法代碼示例。如果您正苦於以下問題:PHP Groups::getAllGroups方法的具體用法?PHP Groups::getAllGroups怎麽用?PHP Groups::getAllGroups使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Groups的用法示例。


在下文中一共展示了Groups::getAllGroups方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: htmlentities

$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_GROUP_TO") . ' ' . $aRow['USR_FIRSTNAME'] . ' ' . $aRow['USR_LASTNAME'] . '</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="showUserGroups(\'' . $_GET['sUserUID'] . '\');return false;">' . G::LoadTranslation('ID_BACK_TO_GROUP_LIST') . '</a></div>';
$tree->showSign = false;
$allGroups = $groups->getAllGroups();
foreach ($allGroups as $group) {
    $ID_ASSIGN = G::LoadTranslation('ID_ASSIGN');
    $groupUID = htmlentities($group->getGrpUid());
    $userUID = $_GET['sUserUID'];
    $GROUP_TITLE = strip_tags($group->getGrpTitle());
    $html = <<<innerHTML
\t      <table cellspacing='0' cellpadding='0' border='1' style='border:0px;'>
\t        <tr>
\t          <td width='250px' class='treeNode' style='border:0px;background-color:transparent;'>{$GROUP_TITLE}</td>\t
\t          <td class='treeNode' style='border:0px;background-color:transparent;'>[<a href="#" onclick="saveUserGroup('{$groupUID}','{$userUID}');return false;">{$ID_ASSIGN}</a>]</td>
\t        </tr>
\t      </table>
innerHTML;
    $ch =& $tree->addChild($group->getGrpUid(), $html, array('nodeType' => 'child'));
    $ch->point = '<img src="/images/users.png" />';
開發者ID:emildev35,項目名稱:processmaker,代碼行數:31,代碼來源:users_AssignGroup.php

示例2: Groups

<?php

require_once '../classes/db/Groups.php';
require_once '../classes/Helper.php';
Helper::checkAuthorisation();
if ($_GET) {
    $groups = new Groups();
    switch ($_GET['type']) {
        case 'id':
            Helper::checkGetParameter('id');
            $group = $groups->getGroup($_GET['id']);
            echo json_encode($group);
            break;
        case 'driver':
            Helper::checkGetParameter('driver_id');
            $response = ['list' => $groups->getGroups($_GET['driver_id'])];
            echo json_encode($response);
            break;
        case 'all':
            $response = ['list' => $groups->getAllGroups()];
            echo json_encode($response);
            break;
    }
}
開發者ID:vgartner,項目名稱:gpsHub,代碼行數:24,代碼來源:groups.php


注:本文中的Groups::getAllGroups方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。