DynamicPageList3/includes/lister/DefinitionList.php

79 lines
1 KiB
PHP
Raw Normal View History

2020-11-22 20:03:02 +00:00
<?php
/**
* DynamicPageList3
* DPL DefinitionList Class
*
* @license GPL-2.0-or-later
* @package DynamicPageList3
*
2021-02-22 23:48:01 +00:00
*/
2020-11-22 20:03:02 +00:00
namespace DPL\Lister;
class DefinitionList extends Lister {
/**
* Listing style for this class.
*
2021-02-22 23:48:01 +00:00
* @var constant
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>';
}