summaryrefslogtreecommitdiffstats
path: root/db/entityjsonserializer.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 17:49:52 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 17:49:52 +0200
commitf52cdaa750f1efa8cb76f6d88c9b1dc291f7b328 (patch)
treea2d6c7b403ea08cef061f0d599a51103f14ff9be /db/entityjsonserializer.php
parent160a0dfebaeb21cc75d7166dfbac6d0ef1a51460 (diff)
add JsonSerializable to entities
Diffstat (limited to 'db/entityjsonserializer.php')
-rw-r--r--db/entityjsonserializer.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/db/entityjsonserializer.php b/db/entityjsonserializer.php
new file mode 100644
index 000000000..7e3357304
--- /dev/null
+++ b/db/entityjsonserializer.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+namespace OCA\News\Db;
+
+trait EntityJSONSerializer {
+
+
+ public function serializeFields($properties) {
+ $result = [];
+ foreach($properties as $property) {
+ $result[$property] = $this->$property;
+ }
+ return $result;
+ }
+
+
+} \ No newline at end of file