page_subtype == "photo") { return html::script('http://widget.fotomoto.com/stores/script/' . module::get_var("fotomotorw", "fotomoto_site_key") . '.js?api=true'); } } static function resize_bottom($theme) { // Generate an array of links to display below photos. $block = new Block; $block->css_id = "g-fotomoto"; $block->anchor = "fotomoto"; $link_array = array(); $counter = 0; if (module::get_var("fotomotorw", "fotomoto_buy_prints")) { $link_array[$counter] = array("100", "Buy Prints"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_buy_cards")) { $link_array[$counter] = array("300", "Buy Cards"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_buy_download")) { $link_array[$counter] = array("400", "Download"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_share_ecard")) { $link_array[$counter] = array("200", "Send eCard"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_share_facebook")) { $link_array[$counter] = array("201", "Share on Facebook"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_share_twitter")) { $link_array[$counter] = array("202", "Share on Twitter"); $counter++; } if (module::get_var("fotomotorw", "fotomoto_share_digg")) { $link_array[$counter] = array("203", "Share on Digg"); $counter++; } $view = new View("fotomotorw_block.html"); $view->details = $link_array; $block->content = $view; return $block; } }