Closed (fixed)
Project:
Synthesized Products
Component:
Code
Priority:
Minor
Category:
Support request
Assigned:
Reporter:
Created:
2 Oct 2009 at 20:37 UTC
Updated:
4 Feb 2010 at 17:50 UTC
following snippet of code
function theme_synth_product_full($node) {
$output = '';
$output .= theme_synth_product_teaser($node);
return $output;
}
has to be converted into drupal 6x compatible format using hook_theme() function. I am clueless as to how to begin - Any idea?
Comments
Comment #1
summit commentedSubscribing, same problem on other module: http://drupal.org/node/290622#comment-2430344
Greetings, Martijn
Comment #2
Keromin4151 commentedhook_theme conversion document can be seen in drupal API documentation. One could either have the 'file' parameter point to its own module or one could simply have theme function converted into .inc files and change 'file' parameter to point to corresponding file.