Overview

Packages

  • ClipIt
    • clipit
      • api
    • urjc
      • backend
  • Elgg
    • Core
      • Access
      • Authentication
      • Cache
      • Caches
      • Core
      • DataMode
        • Site
      • DataModel
        • Annotations
        • Entities
        • Extender
        • File
        • Importable
        • Loggable
        • Notable
        • Object
        • User
      • DataStorage
      • Exception
      • Exceptions
        • Stub
      • FileStore
        • Disk
      • Groups
      • Helpers
      • HMAC
      • Memcache
      • Metadata
      • Navigation
      • ODD
      • Output
      • Plugins
        • Settings
      • Sessions
      • SocialModel
        • Friendable
        • Locatable
      • WebServicesAPI
      • Widgets
      • XML
      • XMLRPC
    • Exceptions
      • Stub
  • None
  • PHP

Classes

  • ClipitActivity
  • ClipitChat
  • ClipitComment
  • ClipitEvent
  • ClipitExample
  • ClipitFile
  • ClipitGroup
  • ClipitLA
  • ClipitLabel
  • ClipitPerformanceItem
  • ClipitPerformanceRating
  • ClipitPost
  • ClipitQuiz
  • ClipitQuizQuestion
  • ClipitQuizResult
  • ClipitRating
  • ClipitRemoteTrickyTopic
  • ClipitRemoteVideo
  • ClipitResource
  • ClipitSite
  • ClipitStoryboard
  • ClipitTag
  • ClipitTagRating
  • ClipitTask
  • ClipitTrickyTopic
  • ClipitUser
  • ClipitVideo
  • Overview
  • Package
  • Class
  • Tree
 1: <?php
 2: /**
 3:  * ClipIt - JuxtaLearn Web Space
 4:  * PHP version:     >= 5.2
 5:  * Creation date:   2013-10-10
 6:  * Last update:     $Date$
 7:  * @author          Pablo LlinĂ¡s Arnaiz <pebs74@gmail.com>, URJC JuxtaLearn Team
 8:  * @version         $Version$
 9:  * @link            http://www.juxtalearn.eu
10:  * @license         GNU Affero General Public License v3
11:  * @package         ClipIt
12:  * @subpackage      clipit_api
13:  */
14: 
15: /**
16:  * A rich-text Comment written by a User and directed to any single Resource. It may contain attached files, and can
17:  * respond to another user's comment (optionally).
18:  */
19: class ClipitComment extends UBMessage {
20:     /**
21:      * @const string Elgg entity SUBTYPE for this class
22:      */
23:     const SUBTYPE = "ClipitComment";
24:     const REL_MESSAGE_DESTINATION = "ClipitComment-destination";
25:     const REL_MESSAGE_FILE = "ClipitComment-ClipitFile";
26:     const REL_MESSAGE_USER = "ClipitComment-ClipitUser";
27: 
28: }
API documentation generated by ApiGen 2.8.0