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: }