Closed (fixed)
Project:
Issuu integration
Version:
6.x-1.x-dev
Component:
Documentation
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
13 Oct 2010 at 12:26 UTC
Updated:
9 Nov 2011 at 06:40 UTC
Jump to comment: Most recent file
Comments
Comment #1
rhache commentedFirst sentence was meant to be "Just wondering if there is any way to change the issuu module's default display."
Comment #2
marvil07 commentedThere are only three formatters for now:
- issuu_formatter_ffpageflip
- issuu_formatter_ffpresentation
- issuu_formatter_issuuthumb
Are you referring this, or are you referring options for one of those?
Comment #3
rhache commentedI guess I'm referring to anything that would allow me to alter the output, such as the size, color, etc. Can these functions be overridden in my theme to change the default display/output? Are there more options in a views display?
Sincerely,
Rene
Comment #4
marvil07 commentedNo, there is not options for that for the moment.
Patches welcome.
Comment #5
marvil07 commentedMarked #949610: Size settings as duplicate of this.
Please note that there is a start patch on #949610-1: Size settings
Comment #6
marvil07 commentedComment #7
rv0 commentedas I needed a bigger thumbnail for the PDF on a specific site, I delved into issuu.module
in function theme_issuu_formatter_issuuthumb(),i changed the thumbnail url on line 458 to:
$thumbnail = ISSUU_URI_IMAGE . $data['documentId'] . '/jpg/page_1_thumb_large.jpg';I had to guess the name (could not find in API), but it works. I discovered 3 sizes (there might be more)
page_1_thumb_small.jpg
page_1_thumb_medium.jpg
page_1_thumb_large.jpg
Would be nice if this were selectable in the settings.
Comment #8
geefin commentedYep, would be nice in the settings, for now I just did a quick edit - I wanted the background to be white on the page flip to integrate with the site.
Opened issuu.module, at line #447 I added :-
'backgroundColor' => 'FFFFFF',So it became :-
Various other options are available if you examine the embed code.
Comment #9
ñull commentedAttached my proposal for configuring the Page Flipper size (my first Git patch; I hope it is right this way).
Comment #10
marvil07 commentedSize is a pretty usual change, so I have added it to the module global settings, but please remember that all formatters are theme functions, so they are completely customizable through the theme.