PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wilcity-mobile-app
/
app
/
SidebarOnApp
<?php namespace WILCITY_APP\SidebarOnApp; class TermBox { public function __construct() { add_filter('wilcity/mobile/sidebar/terms_box', array($this, 'render'), 10, 2); } public function render($aTerms, $aAtts) { $aInfo = array(); foreach ( $aTerms as $order => $oTerm ){ if ( empty( $oTerm ) || is_wp_error( $oTerm ) ) { continue; } $aInfo[] = \WilokeHelpers::getTermOriginalIcon($oTerm); $aInfo[$order]['name'] = $oTerm->name; $aInfo[$order]['term_id'] = $oTerm->term_id; $aInfo[$order]['slug'] = $oTerm->slug; } return json_encode($aInfo); } }
[+]
..
[-] Claim.php
[edit]
[-] TermBox.php
[edit]
[-] Categories.php
[edit]
[-] BusinessInfo.php
[edit]
[-] BusinessHours.php
[edit]
[-] PriceRange.php
[edit]
[-] CustomContent.php
[edit]
[-] Statistic.php
[edit]
[-] Tags.php
[edit]