2020-11-22 20:03:02 +00:00
|
|
|
<?php
|
|
|
|
|
2022-03-13 19:57:34 +00:00
|
|
|
namespace MediaWiki\Extension\DynamicPageList3\Lister;
|
2020-11-22 20:03:02 +00:00
|
|
|
|
|
|
|
class DefinitionList extends Lister {
|
|
|
|
/**
|
|
|
|
* Listing style for this class.
|
|
|
|
*
|
2021-10-01 22:52:30 +00:00
|
|
|
* @var int
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $style = parent::LIST_DEFINITION;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Heading List Start
|
|
|
|
* Use %s for attribute placement. Example: <div%s>
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $headListStart = '<dt%s>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Heading List End
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $headListEnd = '</dt>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Heading List Start
|
|
|
|
* Use %s for attribute placement. Example: <div%s>
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $headItemStart = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Heading List End
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $headItemEnd = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List(Section) Start
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $listStart = '<dl%s>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List(Section) End
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $listEnd = '</dl>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Item Start
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $itemStart = '<dd%s>';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Item End
|
|
|
|
*
|
2021-02-22 23:48:01 +00:00
|
|
|
* @var string
|
2020-11-22 20:03:02 +00:00
|
|
|
*/
|
|
|
|
public $itemEnd = '</dd>';
|
|
|
|
}
|