本文整理匯總了PHP中Lead::createFromClone方法的典型用法代碼示例。如果您正苦於以下問題:PHP Lead::createFromClone方法的具體用法?PHP Lead::createFromClone怎麽用?PHP Lead::createFromClone使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Lead
的用法示例。
在下文中一共展示了Lead::createFromClone方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: GETPOST
$elementselectid = GETPOST("elementselect");
$result = $object->add_object_linked($tablename, $elementselectid);
if ($result < 0) {
setEventMessages(null, $object->errors, 'errors');
}
} elseif ($action == "unlink") {
$sourceid = GETPOST('sourceid');
$sourcetype = GETPOST('sourcetype');
$result = $object->deleteObjectLinked($sourceid, $sourcetype);
if ($result < 0) {
setEventMessages(null, $object->errors, 'errors');
}
} elseif ($action == "confirm_clone" && $confirm == 'yes') {
$object_clone = new Lead($db);
$object_clone->ref_int = GETPOST('ref_interne');
$result = $object_clone->createFromClone($object->id);
if ($result < 0) {
setEventMessages(null, $object_clone->errors, 'errors');
} else {
header('Location:' . $_SERVER["PHP_SELF"] . '?id=' . $result);
}
} elseif ($action == "confirm_lost" && $confirm == 'yes') {
//Status 7=LOST hard coded, loaded by default in data.sql dictionnary (but check is done in this card that call this method)
$object->fk_c_status = 7;
$result = $object->update($user);
if ($result < 0) {
setEventMessages(null, $object->errors, 'errors');
} else {
header('Location:' . $_SERVER["PHP_SELF"] . '?id=' . $object->id);
}
}