package WebGUI::Template::OneOverThree; our $namespace = "OneOverThree"; #------------------------------------------------------------------- # WebGUI is Copyright 2001-2002 Plain Black Software. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using # this software. #------------------------------------------------------------------- # http://www.plainblack.com info@plainblack.com #------------------------------------------------------------------- use strict; use WebGUI::International; #------------------------------------------------------------------- sub generate { my ($output, $content); $content = $_[0]; $output = ''; $output .= ''; $output .= ''; $output .= ''; $output .= ''; $output .= '
'; $output .= ${$content}{A}; $output .= '
'.${$content}{B}.''.${$content}{C}.''.${$content}{D}.'
'; return $output; } #------------------------------------------------------------------- sub name { return WebGUI::International::get(360); } #------------------------------------------------------------------- sub getPositions { return WebGUI::Template::calculatePositions('D'); } 1;