X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FGroup%2FPage%2FAJAX.php;h=a5ed2d72b14d6bf51301fbe4e86317df68118d27;hb=22e263ad985b62de5cf7bdaf09555bfb3f0cd322;hp=1ae0f5a672fd33b2505c63e4ddbf524600367ff9;hpb=f2a84e5c7c916f6c0d4c7fce69b844b019c17dd1;p=civicrm-core.git diff --git a/CRM/Group/Page/AJAX.php b/CRM/Group/Page/AJAX.php index 1ae0f5a672..a5ed2d72b1 100644 --- a/CRM/Group/Page/AJAX.php +++ b/CRM/Group/Page/AJAX.php @@ -1,7 +1,7 @@ 'groups.title', 1 => 'groups.id', 2 => 'createdBy.sort_name', 3 => '', - 4 => 'groups.group_type', 5 => 'groups.visibility', + 0 => 'groups.title', + 1 => 'count', + 2 => 'createdBy.sort_name', + 3 => '', + 4 => 'groups.group_type', + 5 => 'groups.visibility', ); $sEcho = CRM_Utils_Type::escape($_REQUEST['sEcho'], 'Integer'); @@ -84,17 +87,17 @@ class CRM_Group_Page_AJAX { $iFilteredTotal = $iTotal = $params['total']; $selectorElements = array( - 'group_name', 'group_id', 'created_by', 'group_description', + 'group_name', 'count', 'created_by', 'group_description', 'group_type', 'visibility', 'org_info', 'links', 'class', ); if (empty($params['showOrgInfo'])) { unset($selectorElements[6]); } - //add setting so this can be tested by unit test - //@todo - ideally the portion of this that retrieves the groups should be extracted into a function separate - // from the one which deals with web inputs & outputs so we have a properly testable & re-usable function - if(!empty($params['is_unit_test'])) { + //add setting so this can be tested by unit test + //@todo - ideally the portion of this that retrieves the groups should be extracted into a function separate + // from the one which deals with web inputs & outputs so we have a properly testable & re-usable function + if (!empty($params['is_unit_test'])) { return array($groups, $iFilteredTotal); } echo CRM_Utils_JSON::encodeDataTableSelector($groups, $sEcho, $iTotal, $iFilteredTotal, $selectorElements); @@ -102,4 +105,3 @@ class CRM_Group_Page_AJAX { } } } -