aboutsummaryrefslogtreecommitdiff
path: root/lib/search/note.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/search/note.php')
-rw-r--r--lib/search/note.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/search/note.php b/lib/search/note.php
new file mode 100644
index 0000000..333fa8f
--- /dev/null
+++ b/lib/search/note.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Part of grauphel
+ *
+ * PHP version 5
+ *
+ * @category Tools
+ * @package Grauphel
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @copyright 2014 Christian Weiske
+ * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
+ * @link http://cweiske.de/grauphel.htm
+ */
+namespace OCA\Grauphel\Search;
+
+/**
+ * Note search result
+ *
+ * @category Tools
+ * @package Grauphel
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @copyright 2014 Christian Weiske
+ * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
+ * @version Release: @package_version@
+ * @link http://cweiske.de/grauphel.htm
+ */
+class Note extends \OCP\Search\Result
+{
+ /**
+ * Type name; translated in templates
+ *
+ * @var string
+ */
+ public $type = 'note';
+}
+?>