You are here

function quiz_views_handler_percentage in Quiz 5.2

Generic handler given a string will add a percentage sign to the end

1 string reference to 'quiz_views_handler_percentage'
quiz_views_tables in ./quiz_views.module
Implementation of hook_views_tables().

File

./quiz_views.module, line 361
This include file implements views 5.x-1.x functionality on behalf of quiz.module

Code

function quiz_views_handler_percentage($fieldinfo, $fielddata, $value, $data) {
  return $value . '%';
}