| 1 | <?php |
||
| 8 | class Carbon_Pagination_Item_HTML extends Carbon_Pagination_Item { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | * |
||
| 13 | * The HTML of the item. |
||
| 14 | */ |
||
| 15 | protected $html = ''; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Render the item. |
||
| 19 | * |
||
| 20 | * @return string $html The HTML of the item. |
||
| 21 | */ |
||
| 22 | 2 | public function render() { |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Retrieve the item HTML. |
||
| 30 | * |
||
| 31 | * @return string $html The item HTML. |
||
| 32 | */ |
||
| 33 | 1 | public function get_html() { |
|
| 36 | |||
| 37 | /** |
||
| 38 | * Modify the item HTML. |
||
| 39 | * |
||
| 40 | * @param string $html The new item HTML. |
||
| 41 | */ |
||
| 42 | 1 | public function set_html( $html ) { |
|
| 45 | |||
| 46 | } |