1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-05-04 10:34:06 +02:00
Nextcloud-News/lib/Db/EntityJSONSerializer.php
2016-07-23 21:32:42 +02:00

28 lines
606 B
PHP

<?php
/**
* Nextcloud - 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;
}
}