mirror of
https://github.com/Universal-Omega/DynamicPageList3
synced 2024-11-15 03:35:17 +00:00
74 lines
1.2 KiB
PHP
74 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* DynamicPageList3
|
|
* DPL GalleryList Class
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @package DynamicPageList3
|
|
*
|
|
*/
|
|
|
|
namespace DPL\Lister;
|
|
|
|
use DPL\Article;
|
|
|
|
class GalleryList extends Lister {
|
|
/**
|
|
* Listing style for this class.
|
|
*
|
|
* @var constant
|
|
*/
|
|
public $style = parent::LIST_GALLERY;
|
|
|
|
/**
|
|
* List(Section) Start
|
|
*
|
|
* @var string
|
|
*/
|
|
public $listStart = '<gallery%s>';
|
|
|
|
/**
|
|
* List(Section) End
|
|
*
|
|
* @var string
|
|
*/
|
|
public $listEnd = '</gallery>';
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
}
|