summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-19 18:41:30 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-19 18:41:42 +0100
commit3cacc9c90d40f385786482faa51c308afdf54cec (patch)
treefcbf382b55f5d75867ae5e5646ea5f65d5b42cb0 /db
parentcff8adacea135acaf63dc92dd4fbdcd68a070635 (diff)
added entity baseclass and pull deps if phpunit is run
Diffstat (limited to 'db')
-rw-r--r--db/entity.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/db/entity.php b/db/entity.php
new file mode 100644
index 000000000..9adab3b7f
--- /dev/null
+++ b/db/entity.php
@@ -0,0 +1,36 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Copyright
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCA\News\Db;
+
+abstract class Entity {
+
+ public function fromRow($row){
+ foreach($row as $key => $value){
+ $this->$key = $value;
+ }
+ }
+
+} \ No newline at end of file