Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
4fa2f64e
Commit
4fa2f64e
authored
6 years ago
by
Seamus Lee
Browse files
Options
Downloads
Patches
Plain Diff
#561
Convert Activtiy Custom Search from jcalendar to datepicker and...
#561
Convert Activtiy Custom Search from jcalendar to datepicker and fix indenting in tpl file
parent
762e3fc8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Contact/Form/Search/Custom/ActivitySearch.php
+6
-16
6 additions, 16 deletions
CRM/Contact/Form/Search/Custom/ActivitySearch.php
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl
+84
-91
84 additions, 91 deletions
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl
with
90 additions
and
107 deletions
CRM/Contact/Form/Search/Custom/ActivitySearch.php
+
6
−
16
View file @
4fa2f64e
...
...
@@ -123,8 +123,8 @@ class CRM_Contact_Form_Search_Custom_ActivitySearch extends CRM_Contact_Form_Sea
);
// Activity Date range
$form
->
add
Date
(
'start_date'
,
ts
(
'Activity Date From'
),
FALSE
,
array
(
'
formatType'
=>
'custom'
));
$form
->
add
Date
(
'end_date'
,
ts
(
'...through'
),
FALSE
,
array
(
'
formatType'
=>
'custom'
));
$form
->
add
(
'datepicker'
,
'start_date'
,
ts
(
'Activity Date From'
),
[],
FALSE
,
array
(
'
time'
=>
FALSE
));
$form
->
add
(
'datepicker'
,
'end_date'
,
ts
(
'...through'
),
[],
FALSE
,
array
(
'
time'
=>
FALSE
));
// Contact Name field
$form
->
add
(
'text'
,
'sort_name'
,
ts
(
'Contact Name'
));
...
...
@@ -328,22 +328,12 @@ ORDER BY contact_a.sort_name';
$clauses
[]
=
"activity.activity_type_id =
{
$this
->
_formValues
[
'activity_type_id'
]
}
"
;
}
$startDate
=
$this
->
_formValues
[
'start_date'
];
if
(
!
empty
(
$startDate
))
{
$startDate
.
=
'00:00:00'
;
$startDateFormatted
=
CRM_Utils_Date
::
processDate
(
$startDate
);
if
(
$startDateFormatted
)
{
$clauses
[]
=
"activity.activity_date_time >=
$startDateFormatted
"
;
}
if
(
!
empty
(
$this
->
_formValues
[
'start_date'
]))
{
$clauses
[]
=
"activity.activity_date_time >= '
{
$this
->
_formValues
[
'start_date'
]
}
00:00:00'"
;
}
$endDate
=
$this
->
_formValues
[
'end_date'
];
if
(
!
empty
(
$endDate
))
{
$endDate
.
=
'23:59:59'
;
$endDateFormatted
=
CRM_Utils_Date
::
processDate
(
$endDate
);
if
(
$endDateFormatted
)
{
$clauses
[]
=
"activity.activity_date_time <=
$endDateFormatted
"
;
}
if
(
!
empty
(
$this
->
_formValues
[
'end_date'
]))
{
$clauses
[]
=
"activity.activity_date_time <= '
{
$this
->
_formValues
[
'end_date'
]
}
23:59:59'"
;
}
if
(
$includeContactIDs
)
{
...
...
This diff is collapsed.
Click to expand it.
templates/CRM/Contact/Form/Search/Custom/ActivitySearch.tpl
+
84
−
91
View file @
4fa2f64e
...
...
@@ -25,116 +25,109 @@
*}
{* Template for "Sample" custom search component. *}
<div
class=
"crm-form-block crm-search-form-block"
>
<div
class=
"crm-accordion-wrapper crm-activity_search-accordion
{
if
$rows
}
collapsed
{/
if
}
"
>
<div
class=
"crm-accordion-header crm-master-accordion-header"
>
{
ts
}
Edit Search Criteria
{/
ts
}
</div>
<!-- /.crm-accordion-header -->
<div
class=
"crm-accordion-body"
>
<div
id=
"searchForm"
class=
"crm-block crm-form-block crm-contact-custom-search-activity-search-form-block"
>
<div
class=
"crm-submit-buttons"
>
{
include
file
=
"CRM/common/formButtons.tpl"
location
=
"top"
}
</div>
<div
class=
"crm-accordion-wrapper crm-activity_search-accordion
{
if
$rows
}
collapsed
{/
if
}
"
>
<div
class=
"crm-accordion-header crm-master-accordion-header"
>
{
ts
}
Edit Search Criteria
{/
ts
}
</div>
<!-- /.crm-accordion-header -->
<div
class=
"crm-accordion-body"
>
<div
id=
"searchForm"
class=
"crm-block crm-form-block crm-contact-custom-search-activity-search-form-block"
>
<div
class=
"crm-submit-buttons"
>
{
include
file
=
"CRM/common/formButtons.tpl"
location
=
"top"
}
</div>
<table
class=
"form-layout-compressed"
>
{* Loop through all defined search criteria fields (defined in the buildForm() function). *}
{
foreach
from
=
$elements
item
=
element
}
<tr
class=
"crm-contact-custom-search-activity-search-form-block-
{
$element
}
"
>
<td
class=
"label"
>
{
$form
.
$element.label
}
</td>
<td>
{
if
$element
eq
'start_date'
OR
$element
eq
'end_date'
}
{
include
file
=
"CRM/common/jcalendar.tpl"
elementName
=
$element
}
{
else
}
{
$form
.
$element.html
}
{/
if
}
</td>
</tr>
{/
foreach
}
{* Loop through all defined search criteria fields (defined in the buildForm() function). *}
{
foreach
from
=
$elements
item
=
element
}
<tr
class=
"crm-contact-custom-search-activity-search-form-block-
{
$element
}
"
>
<td
class=
"label"
>
{
$form
.
$element.label
}
</td>
<td>
{
$form
.
$element.html
}
</td>
</tr>
{/
foreach
}
</table>
<div
class=
"crm-submit-buttons"
>
{
include
file
=
"CRM/common/formButtons.tpl"
location
=
"bottom"
}
</div>
</div>
</div>
<!-- /.crm-accordion-body -->
</div>
<!-- /.crm-accordion-wrapper -->
<div
class=
"crm-submit-buttons"
>
{
include
file
=
"CRM/common/formButtons.tpl"
location
=
"bottom"
}
</div>
</div>
</div>
<!-- /.crm-accordion-body -->
</div>
<!-- /.crm-accordion-wrapper -->
</div>
<!-- /.crm-form-block -->
{
if
$rowsEmpty
||
$rows
}
<div
class=
"crm-content-block"
>
<div
class=
"crm-content-block"
>
{
if
$rowsEmpty
}
<div
class=
"crm-results-block crm-results-block-empty"
>
{
include
file
=
"CRM/Contact/Form/Search/Custom/EmptyResults.tpl"
}
</div>
{/
if
}
<div
class=
"crm-results-block crm-results-block-empty"
>
{
include
file
=
"CRM/Contact/Form/Search/Custom/EmptyResults.tpl"
}
</div>
{/
if
}
{
if
$rows
}
<div
class=
"crm-results-block"
>
{* Search request has returned 1 or more matching rows. Display results and collapse the search criteria fieldset. *}
{
if
$rows
}
<div
class=
"crm-results-block"
>
{* Search request has returned 1 or more matching rows. Display results and collapse the search criteria fieldset. *}
{* This section handles form elements for action task select and submit *}
<div
class=
"crm-search-tasks"
>
{
include
file
=
"CRM/Contact/Form/Search/ResultTasks.tpl"
}
</div>
{* This section displays the rows along and includes the paging controls *}
<div
class=
"crm-search-results"
>
{* This section handles form elements for action task select and submit *}
<div
class=
"crm-search-tasks"
>
{
include
file
=
"CRM/Contact/Form/Search/ResultTasks.tpl"
}
</div>
{* This section displays the rows along and includes the paging controls *}
<div
class=
"crm-search-results"
>
{
include
file
=
"CRM/common/pager.tpl"
location
=
"top"
}
{
include
file
=
"CRM/common/pager.tpl"
location
=
"top"
}
{
include
file
=
"CRM/common/pagerAToZ.tpl"
}
{
include
file
=
"CRM/common/pagerAToZ.tpl"
}
{
strip
}
<table
summary=
"
{
ts
}
Search results listings.
{/
ts
}
"
>
<thead
class=
"sticky"
>
<th
scope=
"col"
title=
"Select All Rows"
>
{
$form.toggleSelect.html
}
</th>
{
foreach
from
=
$columnHeaders
item
=
header
}
{
if
(
$header.sort
eq
'activity_id'
)
or
(
$header.sort
eq
'activity_type_id'
)
or
(
$header.sort
eq
'case_id'
)
}
{
elseif
(
$header.sort
eq
'sort_name'
)
or
(
$header.sort
eq
'activity_status'
)
or
(
$header.sort
eq
'activity_type'
)
or
(
$header.sort
eq
'activity_subject'
)
or
(
$header.sort
eq
'source_contact'
)
or
(
$header.SORT
eq
'activity_date'
)
or
(
$header.name
eq
null
)
}
{
strip
}
<table
summary=
"
{
ts
}
Search results listings.
{/
ts
}
"
>
<thead
class=
"sticky"
>
<th
scope=
"col"
title=
"Select All Rows"
>
{
$form.toggleSelect.html
}
</th>
{
foreach
from
=
$columnHeaders
item
=
header
}
{
if
(
$header.sort
eq
'activity_id'
)
or
(
$header.sort
eq
'activity_type_id'
)
or
(
$header.sort
eq
'case_id'
)
}
{
elseif
(
$header.sort
eq
'sort_name'
)
or
(
$header.sort
eq
'activity_status'
)
or
(
$header.sort
eq
'activity_type'
)
or
(
$header.sort
eq
'activity_subject'
)
or
(
$header.sort
eq
'source_contact'
)
or
(
$header.SORT
eq
'activity_date'
)
or
(
$header.name
eq
null
)
}
<th
scope=
"col"
>
{
if
$header.sort
}
{
assign
var
=
'key'
value
=
$header.sort
}
{
$sort
->
_response
.
$key.link
}
{
else
}
{
$header.name
}
{/
if
}
{
if
$header.sort
}
{
assign
var
=
'key'
value
=
$header.sort
}
{
$sort
->
_response
.
$key.link
}
{
else
}
{
$header.name
}
{/
if
}
</th>
{/
if
}
</th>
{/
foreach
}
<th>
</th>
</thead>
{/
if
}
{/
foreach
}
<th>
</th>
</thead>
{
counter
start
=
0
skip
=
1
print
=
false
}
{
foreach
from
=
$rows
item
=
row
}
<tr
id=
'rowid
{
counter
}
'
class=
"
{
cycle
values
=
"odd-row,even-row"
}
"
>
{
assign
var
=
cbName
value
=
$row.checkbox
}
<td>
{
$form
.
$cbName.html
}
</td>
{
foreach
from
=
$columnHeaders
item
=
header
}
{
counter
start
=
0
skip
=
1
print
=
false
}
{
foreach
from
=
$rows
item
=
row
}
<tr
id=
'rowid
{
counter
}
'
class=
"
{
cycle
values
=
"odd-row,even-row"
}
"
>
{
assign
var
=
cbName
value
=
$row.checkbox
}
<td>
{
$form
.
$cbName.html
}
</td>
{
foreach
from
=
$columnHeaders
item
=
header
}
{
if
(
$header.sort
eq
'sort_name'
)
or
(
$header.sort
eq
'activity_status'
)
or
(
$header.sort
eq
'activity_type'
)
or
(
$header.sort
eq
'activity_subject'
)
or
(
$header.sort
eq
'source_contact'
)
or
(
$header.SORT
eq
'activity_date'
)
or
(
$header.name
eq
null
)
}
{
assign
var
=
fName
value
=
$header.sort
}
{
if
$fName
eq
'sort_name'
}
<td><a
href=
"
{
crmURL
p
=
'civicrm/contact/view'
q
=
"reset=1&cid=`$row.contact_id`&key=`$qfKey`"
}
"
>
{
$row.sort_name
}
</a></td>
{
elseif
$fName
eq
'activity_subject'
}
<td>
{
if
$row.case_id
}
<a
href=
"
{
crmURL
p
=
'civicrm/case/activity/view'
q
=
"reset=1&aid=`$row.activity_id`&cid=`$row.contact_id`&caseID=`$row.case_id`"
}
"
title=
"
{
ts
}
View activity details
{/
ts
}
"
>
{
else
}
<a
href=
"
{
crmURL
p
=
'civicrm/contact/view/activity'
q
=
"atype=`$row.activity_type_id`&action=view&reset=1&id=`$row.activity_id`&cid=`$row.contact_id`"
}
"
title=
"
{
ts
}
View activity details
{/
ts
}
"
>
{/
if
}
{
if
isset
(
$row.activity_subject
)
AND
$row.activity_subject
NEQ
'NULL'
}{
$row.activity_subject
}{
else
}{
ts
}
(no subject)
{/
ts
}{/
if
}
</a>
</td>
{
elseif
(
$fName
eq
'activity_id'
)
or
(
$fName
eq
'activity_type_id'
)
or
(
$fName
eq
'case_id'
)
}
{
else
}
<td>
{
$row
.
$fName
}
</td>
{/
if
}
{
assign
var
=
fName
value
=
$header.sort
}
{
if
$fName
eq
'sort_name'
}
<td><a
href=
"
{
crmURL
p
=
'civicrm/contact/view'
q
=
"reset=1&cid=`$row.contact_id`&key=`$qfKey`"
}
"
>
{
$row.sort_name
}
</a></td>
{
elseif
$fName
eq
'activity_subject'
}
<td>
{
if
$row.case_id
}
<a
href=
"
{
crmURL
p
=
'civicrm/case/activity/view'
q
=
"reset=1&aid=`$row.activity_id`&cid=`$row.contact_id`&caseID=`$row.case_id`"
}
"
title=
"
{
ts
}
View activity details
{/
ts
}
"
>
{
else
}
<a
href=
"
{
crmURL
p
=
'civicrm/contact/view/activity'
q
=
"atype=`$row.activity_type_id`&action=view&reset=1&id=`$row.activity_id`&cid=`$row.contact_id`"
}
"
title=
"
{
ts
}
View activity details
{/
ts
}
"
>
{/
if
}
{
if
isset
(
$row.activity_subject
)
AND
$row.activity_subject
NEQ
'NULL'
}{
$row.activity_subject
}{
else
}{
ts
}
(no subject)
{/
ts
}{/
if
}
</a>
</td>
{
elseif
(
$fName
eq
'activity_id'
)
or
(
$fName
eq
'activity_type_id'
)
or
(
$fName
eq
'case_id'
)
}
{
else
}
<td>
{
$row
.
$fName
}
</td>
{/
if
}
{/
if
}
{/
foreach
}
<td>
{
$row.action
}
</td>
</tr>
{/
foreach
}
</table>
{/
strip
}
{/
foreach
}
<td>
{
$row.action
}
</td>
</tr>
{/
foreach
}
</table>
{/
strip
}
{
include
file
=
"CRM/common/pager.tpl"
location
=
"bottom"
}
{
include
file
=
"CRM/common/pager.tpl"
location
=
"bottom"
}
</div>
{* END Actions/Results section *}
</div>
{* END Actions/Results section *}
</div>
{/
if
}
</div>
{/
if
}
</div>
{/
if
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment