summaryrefslogtreecommitdiff
path: root/app/Event/ProjectModificationDate.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-07-21 20:32:12 -0230
committerFrédéric Guillot <fred@kanboard.net>2014-07-21 20:32:12 -0230
commit9e1dcf21dc5d65bcc4195f1ae4caedbe57835415 (patch)
tree7fa9a2a08e24de7d16c0196b61e7c1bf8540f486 /app/Event/ProjectModificationDate.php
parent4ae655ced334bb48342274caaf15f2b3d8b444f6 (diff)
Improve webhooks to call external url on task creation/modification
Diffstat (limited to 'app/Event/ProjectModificationDate.php')
-rw-r--r--app/Event/ProjectModificationDate.php53
1 files changed, 53 insertions, 0 deletions
diff --git a/app/Event/ProjectModificationDate.php b/app/Event/ProjectModificationDate.php
new file mode 100644
index 00000000..8fbaee73
--- /dev/null
+++ b/app/Event/ProjectModificationDate.php
@@ -0,0 +1,53 @@
+<?php
+
+namespace Event;
+
+use Core\Listener;
+use Model\Project;
+
+/**
+ * Project modification date listener
+ *
+ * Update the last modified field for a project
+ *
+ * @package event
+ * @author Frederic Guillot
+ */
+class ProjectModificationDate implements Listener
+{
+ /**
+ * Project model
+ *
+ * @accesss private
+ * @var \Model\Project
+ */
+ private $project;
+
+ /**
+ * Constructor
+ *
+ * @access public
+ * @param \Model\Project $project Project model instance
+ */
+ public function __construct(Project $project)
+ {
+ $this->project = $project;
+ }
+
+ /**
+ * Execute the action
+ *
+ * @access public
+ * @param array $data Event data dictionary
+ * @return bool True if the action was executed or false when not executed
+ */
+ public function execute(array $data)
+ {
+ if (isset($data['project_id'])) {
+ $this->project->updateModificationDate($data['project_id']);
+ return true;
+ }
+
+ return false;
+ }
+}