14 lines
464 B
PHP
14 lines
464 B
PHP
<?php js::set('productID', $productID);?>
|
|
<?php js::set('module', $module);?>
|
|
<?php js::set('method', $method);?>
|
|
<?php js::set('extra', $extra);?>
|
|
<div class="list-group">
|
|
<?php
|
|
foreach($branches as $branchID => $branch)
|
|
{
|
|
$linkHtml = $this->branch->setParamsForLink($module, $link, $projectID, $productID, $branchID);
|
|
echo html::a($linkHtml, "<i class='icon-cube'></i> " . $branch, '', "data-key='{$branchesPinyin[$branch]}'");
|
|
}
|
|
?>
|
|
</div>
|