PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
themes
/
wilcity
/
src
/
Ultils
/
ListItems
<?php namespace Wilcity\Ultils\ListItems; class Lists extends RenderableAbstract implements RenderableInterface { public function render(): string { $ul = '<'.$this->wrapperEl.' class="'.esc_attr($this->getAttribute('wrapperClasses', 'wil-lists-item')).'">'; foreach ($this->aElements as $oElement) { $ul .= $oElement->render(); } $ul .= '</'.$this->wrapperEl.'>'; return $ul; } }
[+]
..
[-] WilMessageBtn.php
[edit]
[-] WilReportBtn.php
[edit]
[-] WilReviewBtn.php
[edit]
[-] Div.php
[edit]
[-] WilSocialSharingBtn.php
[edit]
[-] WilSwitchTabBtn.php
[edit]
[-] WilGalleryBtn.php
[edit]
[-] WilFavoriteBtn.php
[edit]
[-] Heading.php
[edit]
[-] RenderableInterface.php
[edit]
[-] Link.php
[edit]
[-] Lists.php
[edit]
[-] RenderableAbstract.php
[edit]
[-] WilSaveToCalendarBtn.php
[edit]
[-] Li.php
[edit]