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
65974bf2
Commit
65974bf2
authored
11 years ago
by
Kurund Jalmi
Browse files
Options
Downloads
Plain Diff
Merge pull request #1136 from kurund/CRM-12965
CRM-12965, fixes for layout based on image
parents
abc8b55b
e135f2b5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/Badge/BAO/Badge.php
+15
-8
15 additions, 8 deletions
CRM/Badge/BAO/Badge.php
with
15 additions
and
8 deletions
CRM/Badge/BAO/Badge.php
+
15
−
8
View file @
65974bf2
...
@@ -45,8 +45,8 @@ class CRM_Badge_BAO_Badge {
...
@@ -45,8 +45,8 @@ class CRM_Badge_BAO_Badge {
/**
/**
* This function is called to create name label pdf
* This function is called to create name label pdf
*
*
* @param array
$participants associated array with participant info
* @param array $participants associated array with participant info
* @param array
$layoutInfo associated array which contains meta data about format/layout
* @param array $layoutInfo associated array which contains meta data about format/layout
*
*
* @return void
* @return void
* @access public
* @access public
...
@@ -85,7 +85,7 @@ class CRM_Badge_BAO_Badge {
...
@@ -85,7 +85,7 @@ class CRM_Badge_BAO_Badge {
$formattedRow
=
array
(
'labelFormat'
=>
$layout
[
'label_format_name'
]);
$formattedRow
=
array
(
'labelFormat'
=>
$layout
[
'label_format_name'
]);
if
(
CRM_Utils_Array
::
value
(
'rowElements'
,
$layout
[
'data'
]))
{
if
(
CRM_Utils_Array
::
value
(
'rowElements'
,
$layout
[
'data'
]))
{
foreach
(
$layout
[
'data'
][
'rowElements'
]
as
$key
=>
$element
)
{
foreach
(
$layout
[
'data'
][
'rowElements'
]
as
$key
=>
$element
)
{
$value
=
''
;
$value
=
''
;
if
(
$element
)
{
if
(
$element
)
{
$value
=
$row
[
$element
];
$value
=
$row
[
$element
];
...
@@ -141,15 +141,22 @@ class CRM_Badge_BAO_Badge {
...
@@ -141,15 +141,22 @@ class CRM_Badge_BAO_Badge {
$this
->
printImage
(
$formattedRow
[
'image_1'
]);
$this
->
printImage
(
$formattedRow
[
'image_1'
]);
}
}
$titleWidth
=
$this
->
lMarginLogo
;
if
(
CRM_Utils_Array
::
value
(
'image_2'
,
$formattedRow
))
{
if
(
CRM_Utils_Array
::
value
(
'image_2'
,
$formattedRow
))
{
$this
->
printImage
(
$formattedRow
[
'image_2'
],
$x
+
68
);
$this
->
printImage
(
$formattedRow
[
'image_2'
],
$x
+
68
);
$titleWidth
=
38
;
}
}
$this
->
pdf
->
SetLineStyle
(
array
(
'width'
=>
0.1
,
'cap'
=>
'round'
,
'join'
=>
'round'
,
$this
->
pdf
->
SetLineStyle
(
array
(
'dash'
=>
'2,2'
,
'color'
=>
array
(
0
,
0
,
200
)));
'width'
=>
0.1
,
'cap'
=>
'round'
,
'join'
=>
'round'
,
'dash'
=>
'2,2'
,
'color'
=>
array
(
0
,
0
,
200
)
));
$this
->
pdf
->
SetFont
(
$formattedRow
[
'token'
][
1
][
'font_name'
],
''
,
$formattedRow
[
'token'
][
1
][
'font_size'
]);
$this
->
pdf
->
SetFont
(
$formattedRow
[
'token'
][
1
][
'font_name'
],
''
,
$formattedRow
[
'token'
][
1
][
'font_size'
]);
$this
->
pdf
->
MultiCell
(
$this
->
pdf
->
width
-
$t
his
->
lMarginLogo
,
0
,
$formattedRow
[
'token'
][
1
][
'value'
],
$this
->
pdf
->
MultiCell
(
$this
->
pdf
->
width
-
$t
itleWidth
,
0
,
$formattedRow
[
'token'
][
1
][
'value'
],
$this
->
border
,
$formattedRow
[
'token'
][
1
][
'text_alignment'
],
0
,
1
,
$x
+
$this
->
lMarginLogo
,
$y
);
$this
->
border
,
$formattedRow
[
'token'
][
1
][
'text_alignment'
],
0
,
1
,
$x
+
$this
->
lMarginLogo
,
$y
);
$this
->
pdf
->
SetFont
(
$formattedRow
[
'token'
][
2
][
'font_name'
],
''
,
$formattedRow
[
'token'
][
2
][
'font_size'
]);
$this
->
pdf
->
SetFont
(
$formattedRow
[
'token'
][
2
][
'font_name'
],
''
,
$formattedRow
[
'token'
][
2
][
'font_size'
]);
...
@@ -196,7 +203,7 @@ class CRM_Badge_BAO_Badge {
...
@@ -196,7 +203,7 @@ class CRM_Badge_BAO_Badge {
* @return void
* @return void
* @access public
* @access public
*/
*/
function
printImage
(
$img
,
$x
=
''
,
$y
=
''
)
{
function
printImage
(
$img
,
$x
=
''
,
$y
=
''
)
{
if
(
!
$x
)
{
if
(
!
$x
)
{
$x
=
$this
->
pdf
->
GetAbsX
();
$x
=
$this
->
pdf
->
GetAbsX
();
}
}
...
...
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