本文整理匯總了PHP中ElggObject::clearRelationships方法的典型用法代碼示例。如果您正苦於以下問題:PHP ElggObject::clearRelationships方法的具體用法?PHP ElggObject::clearRelationships怎麽用?PHP ElggObject::clearRelationships使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ElggObject
的用法示例。
在下文中一共展示了ElggObject::clearRelationships方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: forward
$publication->access_id = $access;
$publication->title = $title;
$publication->description = $abstract;
if (!$publication->save()) {
register_error(elgg_echo("publication:error"));
forward($_SERVER['HTTP_REFERER']);
}
if (is_array($tagarray)) {
$publication->tags = $tagarray;
}
$publication->comments_on = $comments_on;
$publication->uri = $uri;
foreach ($CONFIG->publication as $shortname => $valuetype) {
$publication->{$shortname} = $params_value[$shortname];
}
$publication->clearRelationships();
if (is_array($pauthors) && sizeof($pauthors) > 0) {
foreach ($pauthors as $author) {
if (is_int($author)) {
add_entity_relationship($publication->getGUID(), 'author', $author);
}
}
}
$pauthors = implode(',', $pauthors);
$publication->authors = $pauthors;
$publication->attachment = $attachment;
system_message(elgg_echo("publication:posted"));
add_to_river('river/object/publication/create', 'create', $_SESSION['user']->guid, $publication->guid);
remove_metadata($_SESSION['user']->guid, 'publicationtitle');
remove_metadata($_SESSION['user']->guid, 'publicationabstract');
remove_metadata($_SESSION['user']->guid, 'publicationkeywords');