mLabels = array(); $this->mBodies = array(); $this->mTitle = $title; } // Add a card to the set. The body of the card is expected to be // HTML, not wikitext. function addCard( $label, $body ) { $this->mLabels[] = $label; $this->mBodies[] = $body; } // Return the HTML of this CardSet function renderToOutpage( &$out ) { for ( $i=0; $imLabels ); $i++ ) { $s .= "
\n" . $this->mLabels[$i] . "\n" . $this->mBodies[$i] . "
\n"; } $out->addHTML( $s ); } } // end of: class CardSet ?>