本文整理匯總了PHP中uom::find_by_id方法的典型用法代碼示例。如果您正苦於以下問題:PHP uom::find_by_id方法的具體用法?PHP uom::find_by_id怎麽用?PHP uom::find_by_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類uom
的用法示例。
在下文中一共展示了uom::find_by_id方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: foreach
</div>
<div id="tabsLine-2" class="scrollElement" class="tabContent">
<table class="form_table">
<tr>
<th> Primary UOM Id</th>
<th> Primary UOM</th>
<th> Operator </th>
<th> Primary Relation </th>
</tr>
<tbody class="form_data_line_tbody">
<?php
$count = 0;
if (!empty($search_result)) {
foreach ($search_result as $uom) {
if (!empty($uom->primary_uom_id)) {
$primar_uom_i = uom::find_by_id($uom->primary_uom_id);
$uom->primary_uom = $primar_uom_i->uom_name;
} else {
$uom->primary_uom = null;
}
?>
<tr class="uom_line<?php
echo $count;
?>
">
<td><?php
$f->text_field_widsr('primary_uom_id');
?>
</td>
<td><?php