Skip to content
Snippets Groups Projects
Commit effbcf85 authored by Sunil Pawar's avatar Sunil Pawar
Browse files

report#45 Ability Search Smart or Normal Group using additional filter on Manage Group page

parent 9a6a00d6
No related branches found
No related tags found
No related merge requests found
......@@ -1223,6 +1223,14 @@ WHERE {$whereClause}";
$clauses[] = '`groups`.parents IS NULL';
}
$savedSearch = CRM_Utils_Array::value('savedSearch', $params);
if ($savedSearch == 1) {
$clauses[] = 'groups.saved_search_id IS NOT NULL';
}
else if ($savedSearch == 2) {
$clauses[] = 'groups.saved_search_id IS NULL';
}
// only show child groups of a specific parent group
$parent_id = $params['parent_id'] ?? NULL;
if ($parent_id) {
......
......@@ -40,6 +40,14 @@ class CRM_Group_Form_Search extends CRM_Core_Form {
CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Group', 'title')
);
$optionTypes = [
'1' => ts('Smart Group'),
'2' => ts('Normal Group'),
];
$this->add('select', 'saved_search', ts('Group Type'),
['' => ts('- any -')] + $optionTypes
);
$groupTypes = CRM_Core_OptionGroup::values('group_type', TRUE);
$config = CRM_Core_Config::singleton();
if ($config->userFramework == 'Joomla') {
......
......@@ -42,6 +42,7 @@ class CRM_Group_Page_AJAX {
'status' => 'Integer',
'parentsOnly' => 'Integer',
'showOrgInfo' => 'Boolean',
'savedSearch' => 'Integer',
// Ignore 'parent_id' as that case is handled above
];
$params = CRM_Core_Page_AJAX::defaultSortAndPagerParams();
......
......@@ -55,6 +55,13 @@
{$form.component_mode.html}
</td>
</tr>
<tr>
<td>
{$form.saved_search.label} <br/>{$form.saved_search.html}
</td>
<td colspan="2">
</td>
</tr>
</table>
</div>
</div>
......@@ -116,6 +123,7 @@
d.group_type = groupTypes,
d.visibility = $(".crm-group-search-form-block select#visibility").val(),
d.status = groupStatus,
d.savedSearch = $('.crm-group-search-form-block select#saved_search').val(),
d.component_mode = $(".crm-group-search-form-block select#component_mode").val(),
d.showOrgInfo = {/literal}"{$showOrgInfo}"{literal},
d.parentsOnly = parentsOnly
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment