Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
justinfreeman (Agileware)
Core
Commits
47f21f3a
Commit
47f21f3a
authored
11 years ago
by
colemanw
Browse files
Options
Downloads
Patches
Plain Diff
CRM-13966 - Add method to Core_Form for contactRef fields
parent
5efb95d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Core/Form.php
+93
-1
93 additions, 1 deletion
CRM/Core/Form.php
js/Common.js
+27
-6
27 additions, 6 deletions
js/Common.js
with
120 additions
and
7 deletions
CRM/Core/Form.php
+
93
−
1
View file @
47f21f3a
...
...
@@ -105,6 +105,14 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
*/
public
$ajaxResponse
=
array
();
/**
* Stores info about reference fields for preprocessing
* Public so that hooks can access it
*
* @var array
*/
public
$entityReferenceFields
=
array
();
/**
* constants for attributes for various form elements
* attempt to standardize on the number of variations that we
...
...
@@ -208,7 +216,7 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
* These are not default values
* @param bool is this a required field
*
* @return
object html e
lement
,
could be an error object
* @return
HTML_QuickForm_E
lement could be an error object
* @access public
*
*/
...
...
@@ -399,6 +407,8 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
// the user can do both the form and set default values with this hook
CRM_Utils_Hook
::
buildForm
(
get_class
(
$this
),
$this
);
$this
->
preprocessReferenceFields
();
$this
->
addRules
();
}
...
...
@@ -1196,6 +1206,88 @@ class CRM_Core_Form extends HTML_QuickForm_Page {
$this
->
setDefaults
(
array
(
$name
=>
$defaultCurrency
));
}
/**
* Create a single or multiple contact ref field
* @param string $name
* @param string $label
* @param array $props mix of html and widget properties, including:
* - required
* - select - params to give to select2, notably "multiple"
* - api - array of data for the api, keys include "entity", "action", "params", "search", "key", "label"
* @return HTML_QuickForm_Element
*/
function
addContactRef
(
$name
,
$label
,
$props
=
array
(),
$required
=
FALSE
)
{
$props
[
'class'
]
=
isset
(
$props
[
'class'
])
?
$props
[
'class'
]
.
' crm-select2'
:
'crm-select2'
;
$props
[
'select'
]
=
CRM_Utils_Array
::
value
(
'select'
,
$props
,
array
())
+
array
(
'minimumInputLength'
=>
1
,
'multiple'
=>
!
empty
(
$props
[
'multiple'
]),
'placeholder'
=>
CRM_Utils_Array
::
value
(
'placeholder'
,
$props
,
$required
?
ts
(
'- select -'
)
:
ts
(
'- none -'
)),
'allowClear'
=>
!
$required
,
// Disabled pending https://github.com/ivaynberg/select2/pull/2092
//'formatInputTooShort' => ts('Start typing a name or email address...'),
//'formatNoMatches' => ts('No contacts found.'),
);
$props
[
'api'
]
=
CRM_Utils_Array
::
value
(
'api'
,
$props
,
array
())
+
array
(
'entity'
=>
'contact'
,
'action'
=>
'getquick'
,
'search'
=>
'name'
,
'label'
=>
'data'
,
'key'
=>
'id'
,
);
$this
->
entityReferenceFields
[
$name
]
=
$props
;
$this
->
formatReferenceFieldAttributes
(
$props
);
return
$this
->
add
(
'text'
,
$name
,
$label
,
$props
,
$required
);
}
/**
* @param $props
*/
private
function
formatReferenceFieldAttributes
(
&
$props
)
{
$props
[
'data-select-params'
]
=
json_encode
(
$props
[
'select'
]);
$props
[
'data-api-params'
]
=
json_encode
(
$props
[
'api'
]);
CRM_Utils_Array
::
remove
(
$props
,
'multiple'
,
'select'
,
'api'
);
}
private
function
preprocessReferenceFields
()
{
foreach
(
$this
->
entityReferenceFields
as
$name
=>
$props
)
{
$val
=
$this
->
getElementValue
(
$name
);
$field
=
$this
->
getElement
(
$name
);
// Support array values
if
(
is_array
(
$val
))
{
$val
=
implode
(
','
,
$val
);
$field
->
setValue
(
$val
);
}
if
(
$val
)
{
$data
=
$labels
=
array
();
// Support serialized values
if
(
strpos
(
$val
,
CRM_Core_DAO
::
VALUE_SEPARATOR
)
!==
FALSE
)
{
$val
=
str_replace
(
CRM_Core_DAO
::
VALUE_SEPARATOR
,
','
,
trim
(
$val
,
CRM_Core_DAO
::
VALUE_SEPARATOR
));
$field
->
setValue
(
$val
);
}
foreach
(
explode
(
','
,
$val
)
as
$v
)
{
$result
=
civicrm_api3
(
$props
[
'api'
][
'entity'
],
$props
[
'api'
][
'action'
],
array
(
'sequential'
=>
1
,
$props
[
'api'
][
'key'
]
=>
$v
));
if
(
!
empty
(
$result
[
'values'
]))
{
$data
[]
=
array
(
'id'
=>
$v
,
'text'
=>
$result
[
'values'
][
0
][
$props
[
'api'
][
'label'
]]);
$labels
[]
=
$result
[
'values'
][
0
][
$props
[
'api'
][
'label'
]];
}
}
if
(
$field
->
isFrozen
())
{
$field
->
removeAttribute
(
'class'
);
$field
->
setValue
(
implode
(
', '
,
$labels
));
}
elseif
(
$data
)
{
if
(
empty
(
$props
[
'select'
][
'multiple'
]))
{
$data
=
$data
[
0
];
}
$field
->
setAttribute
(
'data-entity-value'
,
json_encode
(
$data
));
}
}
}
}
/**
* Convert all date fields within the params to mysql date ready for the
* BAO layer. In this case fields are checked against the $_datefields defined for the form
...
...
This diff is collapsed.
Click to expand it.
js/Common.js
+
27
−
6
View file @
47f21f3a
...
...
@@ -253,14 +253,14 @@ CRM.validate = CRM.validate || {
functions
:
[]
};
// Set select2 defaults
$
.
fn
.
select2
.
defaults
.
minimumResultsForSearch
=
10
;
// https://github.com/ivaynberg/select2/pull/2090
$
.
fn
.
select2
.
defaults
.
width
=
'
resolve
'
;
(
function
(
$
,
undefined
)
{
"
use strict
"
;
// Set select2 defaults
$
.
fn
.
select2
.
defaults
.
minimumResultsForSearch
=
10
;
// https://github.com/ivaynberg/select2/pull/2090
$
.
fn
.
select2
.
defaults
.
width
=
'
resolve
'
;
// Initialize widgets
$
(
document
).
on
(
'
crmLoad
'
,
function
(
e
)
{
$
(
'
table.row-highlight
'
,
e
.
target
)
...
...
@@ -284,7 +284,28 @@ $.fn.select2.defaults.width = 'resolve';
$
(
this
).
nextUntil
(
'
option[value^=crm_optgroup]
'
).
wrapAll
(
'
<optgroup label="
'
+
$
(
this
).
text
()
+
'
" />
'
);
$
(
this
).
remove
();
});
var
options
=
$
(
this
).
data
(
'
select2
'
)
||
{};
var
options
=
$
(
this
).
data
(
'
select-params
'
)
||
{};
// Api-based searching
if
(
$
(
this
).
data
(
'
api-params
'
))
{
$
(
this
).
addClass
(
'
crm-ajax-select
'
)
options
.
query
=
function
(
info
)
{
var
api
=
$
(
info
.
element
).
data
(
'
api-params
'
);
var
params
=
api
.
params
||
{};
params
[
api
.
search
]
=
info
.
term
;
CRM
.
api3
(
api
.
entity
,
api
.
action
,
params
).
done
(
function
(
data
)
{
var
results
=
{
context
:
info
.
context
,
results
:
[]};
if
(
typeof
(
data
.
values
)
===
'
object
'
)
{
$
.
each
(
data
.
values
,
function
(
k
,
v
)
{
results
.
results
.
push
({
id
:
v
[
api
.
key
],
text
:
v
[
api
.
label
]});
});
}
info
.
callback
(
results
);
});
};
options
.
initSelection
=
function
(
el
,
callback
)
{
callback
(
el
.
data
(
'
entity-value
'
));
};
}
$
(
this
).
select2
(
options
).
removeClass
(
'
crm-select2
'
);
});
});
...
...
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