本文整理匯總了PHP中Companies::del方法的典型用法代碼示例。如果您正苦於以下問題:PHP Companies::del方法的具體用法?PHP Companies::del怎麽用?PHP Companies::del使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Companies
的用法示例。
在下文中一共展示了Companies::del方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Areas
$area = new Areas();
$industry = new Industries();
$company = new Companies();
$member = new Members();
$conditions = array();
$tpl_file = "company";
setvar('Membergroups', $membergroup->getUsergroups('define'));
setvar('AllMembergroups', $membergroup->getUsergroups('all'));
if (isset($_PB_CACHE['companytype'])) {
setvar("CompanyTypes", $_PB_CACHE['companytype']);
}
setvar("CheckStatus", $_PB_CACHE['check_status']);
setvar("Industries", $_PB_CACHE['industry']);
setvar("Areas", $_PB_CACHE['area']);
if (isset($_POST['del']) && !empty($_POST['id'])) {
$result = $company->del($_POST['id']);
if (!$result) {
flash();
}
}
if (isset($_POST['check'])) {
if (isset($_POST['check']['in'])) {
$result = $company->check($_POST['id'], 1);
} elseif (isset($_POST['check']['out'])) {
$result = $company->check($_POST['id'], 0);
}
if (!$result) {
flash();
}
}
if (isset($_POST['set_group']) && !empty($_POST['id']) && !empty($_POST['set_group'])) {