本文整理汇总了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'])) {