-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathkyCommentableBase.php
More file actions
62 lines (56 loc) · 1.56 KB
/
kyCommentableBase.php
File metadata and controls
62 lines (56 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* Base class for Kayako objects which can be commented.
*
* @author Tomasz Sawicki (https://github.com/Furgas)
* @since Kayako version 4.51.1891
* @package Object\Base
*/
abstract class kyCommentableBase extends kyObjectBase
{
/**
* Name of class representing comments for this object.
* @var string
*/
protected static $comment_class = null;
/**
* Comments for this object.
* @var kyCommentBase[]
*/
protected $comments;
/**
*
* Result is cached until the end of script.
*
* @param bool $reload True to reload data from server. False to use the cached value (if present).
* @return kyCommentBase[]|kyResultSet
*/
public function getComments($reload = false)
{
if ($this->comments !== null && !$reload) {
return $this->comments;
}
$id = $this->getId();
if ($id === null) {
return null;
}
$classname = static::$comment_class;
/** @noinspection PhpUndefinedMethodInspection */
$this->comments = $classname::getAll($id);
return new kyResultSet($this->comments);
}
/**
* Creates a new comment for this object.
* WARNING: Data is not sent to Kayako unless you explicitly call create() on this method's result.
*
* @param kyUser|kyStaff|string $creator Creator (staff object, user object or user fullname) of this comment.
* @param string $contents Contents of this comment.
* @return kyCommentBase
*/
public function newComment($creator, $contents)
{
$classname = static::$comment_class;
/** @noinspection PhpUndefinedMethodInspection */
return $classname::createNew($this, $creator, $contents);
}
}