-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHello.php
More file actions
60 lines (41 loc) · 1.26 KB
/
Hello.php
File metadata and controls
60 lines (41 loc) · 1.26 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
<?php
namespace IdnoPlugins\MyPlugin {
use Idno\Common\Entity;
class Hello extends Entity {
function getTitle()
{
if (!empty($this->greeting)) {
return $this->greeting;
}
return 'Howdy!';
}
function getDescription() {
return $this->getTitle();
}
/**
* Status objects have type 'note'
* @return 'note'
*/
function getActivityStreamsObjectType() {
return 'note';
}
function saveDataFromInput() {
if (empty($this->_id)) {
$new = true;
} else {
$new = false;
}
$currentPage = \Idno\Core\site()->currentPage();
if ($greeting = $currentPage->getInput('greeting')) {
$this->greeting = $greeting;
}
$this->setAccess('PUBLIC');
if ($this->save()) {
if ($new) {
$this->addToFeed();
}
}
return true;
}
}
}