PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
templates
/
default
/
php
<?php /** * @package solo * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ use Awf\Document\Document; use Awf\Document\Menu\Item; use Awf\Text\Text; function _solo_template_renderSubmenu(Document $app, Item $root) { $enabled = $app->getMenu()->isEnabled('main'); $children = $root->getChildren(); if (empty($children)) { return; } /** @var Item $item */ foreach ($children as $item): $link = $item->getUrl(); if (!$enabled) { continue; } ?> <a href="<?php echo $link ?>"><?php echo Text::_($item->getTitle()) ?></a> <?php // We never had nested submenus, so we completely skipped this feature in FEF :) // _solo_template_renderSubmenu($app, $item); ?> <?php endforeach; }
[+]
..
[-] menu.php
[edit]
[-] pagination.php
[edit]
[-] toolbar.php
[edit]
[-] head.php
[edit]
[-] messages.php
[edit]