當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ElggObject::getAnnotations方法代碼示例

本文整理匯總了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();
}
開發者ID:redvabel,項目名稱:Vabelgg,代碼行數:16,代碼來源:2011030101.php

示例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();
}
開發者ID:ibou77,項目名稱:elgg,代碼行數:20,代碼來源:2011030101.php

示例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')));
 }
開發者ID:elgg,項目名稱:elgg,代碼行數:20,代碼來源:ElggEntityTest.php

示例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');
開發者ID:adamboardman,項目名稱:Elgg,代碼行數:31,代碼來源:auto_save_revision.php


注:本文中的ElggObject::getAnnotations方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。