diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 09:10:05 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 09:10:05 +0000 |
commit | 5d11ae2fd5a88b5605aa70167516a571822f0e06 (patch) | |
tree | 5403c5da4f7d42e65ce9ba268da36fecae0e1b1a /src/SemanticScuttle/Service/CommonDescription.php | |
parent | cc1a0b1e9cc2cecdae9d126f1489ee3f12dca531 (diff) | |
download | semanticscuttle-5d11ae2fd5a88b5605aa70167516a571822f0e06.tar.gz semanticscuttle-5d11ae2fd5a88b5605aa70167516a571822f0e06.tar.bz2 |
use dbservice in all services that need a db
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@406 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle/Service/CommonDescription.php')
-rw-r--r-- | src/SemanticScuttle/Service/CommonDescription.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/SemanticScuttle/Service/CommonDescription.php b/src/SemanticScuttle/Service/CommonDescription.php index ed1ffdd..92327c2 100644 --- a/src/SemanticScuttle/Service/CommonDescription.php +++ b/src/SemanticScuttle/Service/CommonDescription.php @@ -1,8 +1,6 @@ <?php -class SemanticScuttle_Service_CommonDescription extends SemanticScuttle_Service +class SemanticScuttle_Service_CommonDescription extends SemanticScuttle_DbService { - var $tablename; - /** * Returns the single service instance * @@ -170,8 +168,5 @@ class SemanticScuttle_Service_CommonDescription extends SemanticScuttle_Service $this->db->sql_query($query); } - // Properties - function getTableName() { return $this->tablename; } - function setTableName($value) { $this->tablename = $value; } } ?> |