本文整理汇总了PHP中vmCommonHTML::getList方法的典型用法代码示例。如果您正苦于以下问题:PHP vmCommonHTML::getList方法的具体用法?PHP vmCommonHTML::getList怎么用?PHP vmCommonHTML::getList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vmCommonHTML
的用法示例。
在下文中一共展示了vmCommonHTML::getList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
echo '<tr><td><input type="hidden" value="' . $db->f('product_in_stock') . '" name="product_in_stock_old" />';
echo '<input type="checkbox" value="1" checked="checked" id="notify_users" name="notify_users" /> <label for="notify_users">' . $VM_LANG->_('PRODUCT_WAITING_LIST_NOTIFYUSERS') . '</label><br /><br /></td></tr>';
echo '<tr><td>';
while ($dbw->next_record()) {
if ($dbw->f("notified") == 1) {
$waiting_notified = ' - <strong style="font-weight:bold">' . $VM_LANG->_('PRODUCT_WAITING_LIST_NOTIFIED') . ' ' . $dbw->f("notify_date") . '</strong>';
} else {
$waiting_notified = '';
}
if ($dbw->f("user_id") == 0) {
$waitinglist[] = '<a href="mailto:' . $dbw->f('notify_email') . '">' . $dbw->f('notify_email') . '</a>' . $waiting_notified;
} else {
$waitinglist[] = $dbw->f('name') . ' (' . $dbw->f('username') . ' - ' . '<a href="mailto:' . $dbw->f('notify_email') . '">' . $dbw->f('notify_email') . '</a>' . ')' . $waiting_notified;
}
}
echo vmCommonHTML::getList($waitinglist);
echo '</td></tr></table>';
$tabs->endTab();
}
}
$tabs->endPane();
// Add necessary hidden fields
$formObj->hiddenField('product_id', $product_id);
$formObj->hiddenField('product_parent_id', $product_parent_id);
$formObj->hiddenField('pshop_mode', 'admin');
if (!stristr($db->f("product_thumb_image"), "http") && $clone_product != "1") {
$formObj->hiddenField('product_thumb_image_curr', $db->f("product_thumb_image"));
}
if (!stristr($db->f("product_full_image"), "http") && $clone_product != "1") {
$formObj->hiddenField('product_full_image_curr', $db->f("product_full_image"));
}