本文整理匯總了PHP中customer::activate方法的典型用法代碼示例。如果您正苦於以下問題:PHP customer::activate方法的具體用法?PHP customer::activate怎麽用?PHP customer::activate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類customer
的用法示例。
在下文中一共展示了customer::activate方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
if (tool::securePost('action') == "save" && tool::securePost('id')) {
# fill customer with submitted data
$customerInst->id = tool::securePost('id');
$customerInst->fill(tool::securePostAll());
$status = $customerInst->update();
} elseif (tool::securePost('action') == "save") {
$customerInst->fill(tool::securePostAll());
$status = $customerInst->insert();
}
if (tool::securePost('action') == "delete") {
$customerInst->id = tool::securePost('id');
$customerInst->delete();
}
if (tool::securePost('action') == "edit") {
$status = 0;
$customerInst->activate(tool::securePost('id'));
}
#######################################################################
## make edit / new form
if (!$status) {
echo "<h2>" . $lang['common_editRecord'] . " (<a href=\"" . $toolInst->encodeUrl("index.php?content=" . $content) . "\">" . $lang['common_newRecord'] . "</a>)</h2>\n";
} else {
$customerInst->clear();
echo "<h2>" . $lang['common_newRecord'] . "</h2>\n";
}
?>
<form method="post" name="form2">
<input type="hidden" name="action" value="save">
<input type="hidden" name="id" value="<?php
echo $customerInst->id;
示例2: customer
?>
): </td><td><input value="<?php
echo $projectInst->budget;
?>
" maxlength="10" type="text" name="budget" size="10"></td></tr>
<tr>
<td><?php
echo $lang['common_customer'];
?>
: </td>
<td><select name="customerid">
<?php
$customerInst = new customer();
$list = $customerInst->getList();
while ($element = current($list)) {
$customerInst->activate($element);
$selected = "";
if ($customerInst->id == $projectInst->customerId) {
$selected = "selected";
}
echo "<option " . $selected . " value=\"" . $customerInst->id . "\">" . $customerInst->company . "\n";
next($list);
}
?>
</select></td>
</tr>
<tr>
<td><?php
echo $lang['common_manager'];
?>
: </td>