Hi there!
I´ve been looking on how to do that, but it seems that´s not a view, so... is there a way to customize that? (adding a header, adding a pager, etc)
Thanks!
Rosamunda

Comments

sivaji_ganesh_jojodae’s picture

You need to override the theme_quiz_get_user_results() defined in quiz.pages.inc.

In your template.php add

function phptemplate_quiz_get_user_results($results) {
  // $results - An array of quiz results.
  // overriding statements  
  print_r($results);
}

Edit : Don't forget to rebuild the theme registry.

Rosamunda’s picture

Thanks!!!
Trying that out now!

Rosamunda’s picture

I´m trying to change it according to what I need, but... I think it´s far easier if I can put there a view instead of programatically add it (or using the template).
How can I hide it?
Thanks again!!
Rosamunda

jlongbottom’s picture

Just copy the function out of the module and put it into your template.php and make the necessary changes.

djdevin’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

This issue is being closed because it is filed against a version that is no longer supported.