Skip to content

Instantly share code, notes, and snippets.

@mohsin
Created December 30, 2016 09:09
Show Gist options
  • Select an option

  • Save mohsin/1383e426d2693b24140448878160cf06 to your computer and use it in GitHub Desktop.

Select an option

Save mohsin/1383e426d2693b24140448878160cf06 to your computer and use it in GitHub Desktop.
The toolbar partial
<div class="control-toolbar">
<?php if (count($variants) == 0): ?>
<div class="toolbar-item callout fade in callout-danger">
<div class="form-control content" style="padding: 10px 20px 10px;">
<p>You must create at least one app with one variant to see values in this section.</p>
</div>
</div>
<?php else: ?>
<div class="toolbar-item toolbar-primary">
<div id="dropdown-variant" data-control="toolbar">
<?= $this->makePartial('dropdown') ?>
</div>
</div>
<?php endif ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment