本文整理汇总了PHP中ElggObject::getAnnotations方法的典型用法代码示例。如果您正苦于以下问题:PHP ElggObject::getAnnotations方法的具体用法?PHP ElggObject::getAnnotations怎么用?PHP ElggObject::getAnnotations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ElggObject
的用法示例。
在下文中一共展示了ElggObject::getAnnotations方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: groups_2011030101
/**
* Condense annotation into object
*
* @param ElggObject $topic
*/
function groups_2011030101($topic)
{
$annotation = $topic->getAnnotations('group_topic_post', 1);
if (!$annotation) {
// no text for this forum post so we delete (probably caused by #2624)
return $topic->delete();
}
$topic->description = $annotation[0]->value;
$topic->save();
return $annotation[0]->delete();
}
示例2: groups_2011030101
/**
* Condense first annotation into object
*
* @param ElggObject $topic
*/
function groups_2011030101($topic)
{
// do not upgrade topics that have already been upgraded
if ($topic->description) {
return true;
}
$annotation = $topic->getAnnotations(array('annotation_name' => 'group_topic_post', 'limit' => 1));
if (!$annotation) {
// no text for this forum post so we delete (probably caused by #2624)
return $topic->delete();
}
$topic->description = $annotation[0]->value;
$topic->save();
return $annotation[0]->delete();
}
示例3: testElggEntityGetAndSetAnnotations
public function testElggEntityGetAndSetAnnotations()
{
$this->assertIdentical($this->entity->getAnnotations(array('annotation_name' => 'non_existent')), array());
// save entity and check for annotation
$this->entity->annotate('non_existent', 'foo');
$annotations = $this->entity->getAnnotations(array('annotation_name' => 'non_existent'));
$this->assertIsA($annotations[0], '\\ElggAnnotation');
$this->assertIdentical($annotations[0]->name, 'non_existent');
$this->assertEqual($this->entity->countAnnotations('non_existent'), 1);
// @todo belongs in Annotations API test class
$this->assertIdentical($annotations, elgg_get_annotations(array('guid' => $this->entity->getGUID())));
$this->assertIdentical($annotations, elgg_get_annotations(array('guid' => $this->entity->getGUID(), 'type' => 'object')));
$this->assertIdentical(false, elgg_get_annotations(array('guid' => $this->entity->getGUID(), 'type' => 'object', 'subtype' => 'fail')));
// clear annotation
$this->assertTrue($this->entity->deleteAnnotations());
$this->assertEqual($this->entity->countAnnotations('non_existent'), 0);
// @todo belongs in Annotations API test class
$this->assertIdentical(array(), elgg_get_annotations(array('guid' => $this->entity->getGUID())));
$this->assertIdentical(array(), elgg_get_annotations(array('guid' => $this->entity->getGUID(), 'type' => 'object')));
}
示例4: time
$blog->access_id = ACCESS_PRIVATE;
$blog->title = $title;
$blog->description = $description;
$blog->excerpt = blog_make_excerpt($excerpt);
// must be present or doesn't show up when metadata sorting.
$blog->publish_date = time();
if (!$blog->save()) {
$error = elgg_echo('blog:error:cannot_save');
}
}
// creat draft annotation
if (!$error) {
// annotations don't have a "time_updated" so
// we have to delete everything or the times are wrong.
// don't save if nothing changed
if ($auto_save_annotations = $blog->getAnnotations('blog_auto_save', 1)) {
$auto_save = $auto_save_annotations[0];
} else {
$auto_save == FALSE;
}
if (!$auto_save) {
$annotation_id = $blog->annotate('blog_auto_save', $description);
} elseif ($auto_save instanceof ElggAnnotation && $auto_save->value != $description) {
$blog->clearAnnotations('blog_auto_save');
$annotation_id = $blog->annotate('blog_auto_save', $description);
} elseif ($auto_save instanceof ElggAnnotation && $auto_save->value == $description) {
// this isn't an error because we have an up to date annotation.
$annotation_id = $auto_save->id;
}
if (!$annotation_id) {
$error = elgg_echo('blog:error:cannot_auto_save');