diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-10-24 08:54:35 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-10-24 08:54:35 +0200 |
| commit | 2b5ff5d48b4ec80e0e0e18188689edefaeefe91d (patch) | |
| tree | 48c56752ddba48451fb10bed7e463adf531d037d /lib/search/note.php | |
| parent | 93298095b3c4455aa1a4c676d6e2f9915ca06caa (diff) | |
| download | grauphel-2b5ff5d48b4ec80e0e0e18188689edefaeefe91d.tar.gz grauphel-2b5ff5d48b4ec80e0e0e18188689edefaeefe91d.zip | |
Implement note search
Diffstat (limited to 'lib/search/note.php')
| -rw-r--r-- | lib/search/note.php | 36 |
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'; +} +?> |
