prepare method for ff_list

This commit is contained in:
info@mschuette.name 2014-05-26 13:41:11 +00:00
parent ec84f3d91b
commit 8f0fb1ef7e

View file

@ -266,6 +266,10 @@ EOT;
return $outstr; return $outstr;
} }
function output_ff_list() {
return 'here be some ff_list';
}
function shortcode_handler($atts, $content, $shortcode) { function shortcode_handler($atts, $content, $shortcode) {
// $atts[0] holds the city name, if given // $atts[0] holds the city name, if given
if (empty($atts[0])) { if (empty($atts[0])) {
@ -296,6 +300,9 @@ EOT;
case 'ff_contact': case 'ff_contact':
$outstr .= $this->output_ff_contact($metadata); $outstr .= $this->output_ff_contact($metadata);
break; break;
case 'ff_list':
$outstr .= $this->output_ff_list();
break;
default: default:
$outstr .= ""; $outstr .= "";
break; break;