prepare method for ff_list
This commit is contained in:
parent
ec84f3d91b
commit
8f0fb1ef7e
|
@ -266,6 +266,10 @@ EOT;
|
|||
return $outstr;
|
||||
}
|
||||
|
||||
function output_ff_list() {
|
||||
return 'here be some ff_list';
|
||||
}
|
||||
|
||||
function shortcode_handler($atts, $content, $shortcode) {
|
||||
// $atts[0] holds the city name, if given
|
||||
if (empty($atts[0])) {
|
||||
|
@ -296,6 +300,9 @@ EOT;
|
|||
case 'ff_contact':
|
||||
$outstr .= $this->output_ff_contact($metadata);
|
||||
break;
|
||||
case 'ff_list':
|
||||
$outstr .= $this->output_ff_list();
|
||||
break;
|
||||
default:
|
||||
$outstr .= "";
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue