當前位置: 首頁>>代碼示例>>PHP>>正文


PHP customer::activate方法代碼示例

本文整理匯總了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;
開發者ID:pmtool,項目名稱:pmtool,代碼行數:31,代碼來源:customers.php

示例2: customer

    ?>
):&nbsp;</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'];
    ?>
:&nbsp;</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'];
    ?>
:&nbsp;</td>
開發者ID:pmtool,項目名稱:pmtool,代碼行數:31,代碼來源:projects.php


注:本文中的customer::activate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。