Skip to content

Instantly share code, notes, and snippets.

@schmunk42
Created January 11, 2015 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schmunk42/80e9ecd04622db688345 to your computer and use it in GitHub Desktop.
Save schmunk42/80e9ecd04622db688345 to your computer and use it in GitHub Desktop.
Module controllers navigation pills (Phundament 4)
<ul class="nav nav-pills">
<?php
foreach (\Yii::$app->getModule('admin')->getControllers($this->context->module->id) AS $i => $controller):
?>
<li role="presentation">
<?= yii\helpers\Html::a(
$controller,
["/{$this->context->module->id}/$controller"],
['class' => 'btn btn-default btn-flat']
); ?>
</li>
<?php endforeach; ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment