Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
8ba2d2bf
Commit
8ba2d2bf
authored
19 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#35086
by stefan: improved themeability of the poll results.
parent
6938e6cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/poll.module
+47
-28
47 additions, 28 deletions
modules/poll.module
modules/poll/poll.module
+47
-28
47 additions, 28 deletions
modules/poll/poll.module
with
94 additions
and
56 deletions
modules/poll.module
+
47
−
28
View file @
8ba2d2bf
...
@@ -334,32 +334,53 @@ function theme_poll_view_voting($form) {
...
@@ -334,32 +334,53 @@ function theme_poll_view_voting($form) {
* Generates a graphical representation of the results of a poll.
* Generates a graphical representation of the results of a poll.
*/
*/
function
poll_view_results
(
&
$node
,
$teaser
,
$page
,
$block
)
{
function
poll_view_results
(
&
$node
,
$teaser
,
$page
,
$block
)
{
// Display the results
// Count the votes and find the maximum
// Count the votes and find the maximum
foreach
(
$node
->
choice
as
$choice
)
{
foreach
(
$node
->
choice
as
$choice
)
{
$
votes
total
+=
$choice
[
'chvotes'
];
$total
_votes
+=
$choice
[
'chvotes'
];
$votes
max
=
max
(
$votes
max
,
$choice
[
'chvotes'
]);
$
max_
votes
=
max
(
$
max_
votes
,
$choice
[
'chvotes'
]);
}
}
// Output the divs for the text, bars and percentages
$output
.
=
'<div class="poll">'
;
if
(
$block
)
{
$output
.
=
'<div class="title">'
.
check_plain
(
$node
->
title
)
.
'</div>'
;
}
foreach
(
$node
->
choice
as
$i
=>
$choice
)
{
foreach
(
$node
->
choice
as
$i
=>
$choice
)
{
if
(
$choice
[
'chtext'
]
!=
''
)
{
if
(
$choice
[
'chtext'
]
!=
''
)
{
$percentage
=
round
(
$choice
[
'chvotes'
]
*
100
/
max
(
$votestotal
,
1
));
$poll_results
.
=
theme
(
'poll_bar'
,
check_plain
(
$choice
[
'chtext'
]),
round
(
$choice
[
'chvotes'
]
*
100
/
max
(
$total_votes
,
1
)),
format_plural
(
$choice
[
'chvotes'
],
'1 vote'
,
'%count votes'
),
$block
);
$output
.
=
'<div class="text">'
.
check_plain
(
$choice
[
'chtext'
])
.
'</div>'
;
$output
.
=
'<div class="bar">'
;
$output
.
=
'<div style="width: '
.
$percentage
.
'%;" class="foreground"></div>'
;
$output
.
=
'</div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'%'
.
(
!
$block
?
' ('
.
format_plural
(
$choice
[
'chvotes'
],
'1 vote'
,
'%count votes'
)
.
')'
:
''
)
.
'</div>'
;
}
}
}
}
$output
.
=
'<div class="total">'
.
t
(
'Total votes'
)
.
":
$votestotal
</div>"
;
$output
.
=
'</div>'
;
$output
.
=
theme
(
'poll_results'
,
check_plain
(
$node
->
title
),
$poll_results
,
$total_votes
,
$node
->
links
,
$block
);
return
$output
;
}
function
theme_poll_results
(
$title
,
$results
,
$votes
,
$links
,
$block
)
{
if
(
$block
)
{
$output
.
=
'<div class="poll">'
;
$output
.
=
'<div class="title">'
.
$title
.
'</div>'
;
$output
.
=
$results
;
$output
.
=
'<div class="total">'
.
t
(
'Total votes: %votes'
,
array
(
'%votes'
=>
$votes
))
.
'</div>'
;
$output
.
=
'</div>'
;
$output
.
=
'<div class="links">'
.
theme
(
'links'
,
$links
)
.
'</div>'
;
}
else
{
$output
.
=
'<div class="poll">'
;
$output
.
=
$results
;
$output
.
=
'<div class="total">'
.
t
(
'Total votes: %votes'
,
array
(
'%votes'
=>
$votes
))
.
'</div>'
;
$output
.
=
'</div>'
;
}
return
$output
;
}
function
theme_poll_bar
(
$title
,
$percentage
,
$votes
,
$block
)
{
if
(
$block
)
{
$output
=
'<div class="text">'
.
$title
.
'</div>'
;
$output
.
=
'<div class="bar"><div style="width: '
.
$percentage
.
'%;" class="foreground"></div></div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'%</div>'
;
}
else
{
$output
=
'<div class="text">'
.
$title
.
'</div>'
;
$output
.
=
'<div class="bar"><div style="width: '
.
$percentage
.
'%;" class="foreground"></div></div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'% ('
.
$votes
.
')</div>'
;
}
return
$output
;
return
$output
;
}
}
...
@@ -423,13 +444,6 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
...
@@ -423,13 +444,6 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
global
$user
;
global
$user
;
$output
=
''
;
$output
=
''
;
if
(
$node
->
allowvotes
&&
(
$block
||
arg
(
2
)
!=
'results'
))
{
$output
.
=
poll_view_voting
(
$node
,
$teaser
,
$page
,
$block
);
}
else
{
$output
.
=
poll_view_results
(
$node
,
$teaser
,
$page
,
$block
);
}
// Special display for side-block
// Special display for side-block
if
(
$block
)
{
if
(
$block
)
{
// No 'read more' link
// No 'read more' link
...
@@ -441,7 +455,14 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
...
@@ -441,7 +455,14 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
$links
[]
=
l
(
t
(
'results'
),
'node/'
.
$node
->
nid
.
'/results'
,
array
(
'title'
=>
t
(
'View the current poll results.'
)));
$links
[]
=
l
(
t
(
'results'
),
'node/'
.
$node
->
nid
.
'/results'
,
array
(
'title'
=>
t
(
'View the current poll results.'
)));
}
}
$output
.
=
'<div class="links">'
.
theme
(
"links"
,
$links
)
.
'</div>'
;
$node
->
links
=
$links
;
}
if
(
$node
->
allowvotes
&&
(
$block
||
arg
(
2
)
!=
'results'
))
{
$output
.
=
poll_view_voting
(
$node
,
$teaser
,
$page
,
$block
);
}
else
{
$output
.
=
poll_view_results
(
$node
,
$teaser
,
$page
,
$block
);
}
}
$node
->
body
=
$node
->
teaser
=
$output
;
$node
->
body
=
$node
->
teaser
=
$output
;
...
@@ -462,6 +483,4 @@ function poll_update($node) {
...
@@ -462,6 +483,4 @@ function poll_update($node) {
db_query
(
"INSERT INTO
{
poll_choices
}
(nid, chtext, chvotes, chorder) VALUES (%d, '%s', %d, %d)"
,
$node
->
nid
,
$chtext
,
$chvotes
,
$i
++
);
db_query
(
"INSERT INTO
{
poll_choices
}
(nid, chtext, chvotes, chorder) VALUES (%d, '%s', %d, %d)"
,
$node
->
nid
,
$chtext
,
$chvotes
,
$i
++
);
}
}
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
modules/poll/poll.module
+
47
−
28
View file @
8ba2d2bf
...
@@ -334,32 +334,53 @@ function theme_poll_view_voting($form) {
...
@@ -334,32 +334,53 @@ function theme_poll_view_voting($form) {
* Generates a graphical representation of the results of a poll.
* Generates a graphical representation of the results of a poll.
*/
*/
function
poll_view_results
(
&
$node
,
$teaser
,
$page
,
$block
)
{
function
poll_view_results
(
&
$node
,
$teaser
,
$page
,
$block
)
{
// Display the results
// Count the votes and find the maximum
// Count the votes and find the maximum
foreach
(
$node
->
choice
as
$choice
)
{
foreach
(
$node
->
choice
as
$choice
)
{
$
votes
total
+=
$choice
[
'chvotes'
];
$total
_votes
+=
$choice
[
'chvotes'
];
$votes
max
=
max
(
$votes
max
,
$choice
[
'chvotes'
]);
$
max_
votes
=
max
(
$
max_
votes
,
$choice
[
'chvotes'
]);
}
}
// Output the divs for the text, bars and percentages
$output
.
=
'<div class="poll">'
;
if
(
$block
)
{
$output
.
=
'<div class="title">'
.
check_plain
(
$node
->
title
)
.
'</div>'
;
}
foreach
(
$node
->
choice
as
$i
=>
$choice
)
{
foreach
(
$node
->
choice
as
$i
=>
$choice
)
{
if
(
$choice
[
'chtext'
]
!=
''
)
{
if
(
$choice
[
'chtext'
]
!=
''
)
{
$percentage
=
round
(
$choice
[
'chvotes'
]
*
100
/
max
(
$votestotal
,
1
));
$poll_results
.
=
theme
(
'poll_bar'
,
check_plain
(
$choice
[
'chtext'
]),
round
(
$choice
[
'chvotes'
]
*
100
/
max
(
$total_votes
,
1
)),
format_plural
(
$choice
[
'chvotes'
],
'1 vote'
,
'%count votes'
),
$block
);
$output
.
=
'<div class="text">'
.
check_plain
(
$choice
[
'chtext'
])
.
'</div>'
;
$output
.
=
'<div class="bar">'
;
$output
.
=
'<div style="width: '
.
$percentage
.
'%;" class="foreground"></div>'
;
$output
.
=
'</div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'%'
.
(
!
$block
?
' ('
.
format_plural
(
$choice
[
'chvotes'
],
'1 vote'
,
'%count votes'
)
.
')'
:
''
)
.
'</div>'
;
}
}
}
}
$output
.
=
'<div class="total">'
.
t
(
'Total votes'
)
.
":
$votestotal
</div>"
;
$output
.
=
'</div>'
;
$output
.
=
theme
(
'poll_results'
,
check_plain
(
$node
->
title
),
$poll_results
,
$total_votes
,
$node
->
links
,
$block
);
return
$output
;
}
function
theme_poll_results
(
$title
,
$results
,
$votes
,
$links
,
$block
)
{
if
(
$block
)
{
$output
.
=
'<div class="poll">'
;
$output
.
=
'<div class="title">'
.
$title
.
'</div>'
;
$output
.
=
$results
;
$output
.
=
'<div class="total">'
.
t
(
'Total votes: %votes'
,
array
(
'%votes'
=>
$votes
))
.
'</div>'
;
$output
.
=
'</div>'
;
$output
.
=
'<div class="links">'
.
theme
(
'links'
,
$links
)
.
'</div>'
;
}
else
{
$output
.
=
'<div class="poll">'
;
$output
.
=
$results
;
$output
.
=
'<div class="total">'
.
t
(
'Total votes: %votes'
,
array
(
'%votes'
=>
$votes
))
.
'</div>'
;
$output
.
=
'</div>'
;
}
return
$output
;
}
function
theme_poll_bar
(
$title
,
$percentage
,
$votes
,
$block
)
{
if
(
$block
)
{
$output
=
'<div class="text">'
.
$title
.
'</div>'
;
$output
.
=
'<div class="bar"><div style="width: '
.
$percentage
.
'%;" class="foreground"></div></div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'%</div>'
;
}
else
{
$output
=
'<div class="text">'
.
$title
.
'</div>'
;
$output
.
=
'<div class="bar"><div style="width: '
.
$percentage
.
'%;" class="foreground"></div></div>'
;
$output
.
=
'<div class="percent">'
.
$percentage
.
'% ('
.
$votes
.
')</div>'
;
}
return
$output
;
return
$output
;
}
}
...
@@ -423,13 +444,6 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
...
@@ -423,13 +444,6 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
global
$user
;
global
$user
;
$output
=
''
;
$output
=
''
;
if
(
$node
->
allowvotes
&&
(
$block
||
arg
(
2
)
!=
'results'
))
{
$output
.
=
poll_view_voting
(
$node
,
$teaser
,
$page
,
$block
);
}
else
{
$output
.
=
poll_view_results
(
$node
,
$teaser
,
$page
,
$block
);
}
// Special display for side-block
// Special display for side-block
if
(
$block
)
{
if
(
$block
)
{
// No 'read more' link
// No 'read more' link
...
@@ -441,7 +455,14 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
...
@@ -441,7 +455,14 @@ function poll_view(&$node, $teaser = FALSE, $page = FALSE, $block = FALSE) {
$links
[]
=
l
(
t
(
'results'
),
'node/'
.
$node
->
nid
.
'/results'
,
array
(
'title'
=>
t
(
'View the current poll results.'
)));
$links
[]
=
l
(
t
(
'results'
),
'node/'
.
$node
->
nid
.
'/results'
,
array
(
'title'
=>
t
(
'View the current poll results.'
)));
}
}
$output
.
=
'<div class="links">'
.
theme
(
"links"
,
$links
)
.
'</div>'
;
$node
->
links
=
$links
;
}
if
(
$node
->
allowvotes
&&
(
$block
||
arg
(
2
)
!=
'results'
))
{
$output
.
=
poll_view_voting
(
$node
,
$teaser
,
$page
,
$block
);
}
else
{
$output
.
=
poll_view_results
(
$node
,
$teaser
,
$page
,
$block
);
}
}
$node
->
body
=
$node
->
teaser
=
$output
;
$node
->
body
=
$node
->
teaser
=
$output
;
...
@@ -462,6 +483,4 @@ function poll_update($node) {
...
@@ -462,6 +483,4 @@ function poll_update($node) {
db_query
(
"INSERT INTO
{
poll_choices
}
(nid, chtext, chvotes, chorder) VALUES (%d, '%s', %d, %d)"
,
$node
->
nid
,
$chtext
,
$chvotes
,
$i
++
);
db_query
(
"INSERT INTO
{
poll_choices
}
(nid, chtext, chvotes, chorder) VALUES (%d, '%s', %d, %d)"
,
$node
->
nid
,
$chtext
,
$chvotes
,
$i
++
);
}
}
}
}
}
}
\ No newline at end of file
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