'; /** * List(Section) End * * @var string */ public $listEnd = ''; /** * Item Start * * @var string */ public $itemStart = "\n"; /** * Item End * * @var string */ public $itemEnd = "|"; /** * Format an item. * * @access public * @param object DPL\Article * @param string [Optional] Page text to include.include. * @return string Item HTML */ public function formatItem( Article $article, $pageText = null ) { $item = $article->mTitle; if ( $pageText !== null ) { //Include parsed/processed wiki markup content after each item before the closing tag. $item .= $pageText; } $item = $this->getItemStart() . $item . $this->itemEnd; $item = $this->replaceTagParameters( $item, $article ); return $item; } }