diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 08:05:00 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 08:05:00 +0000 |
commit | 00ba74e0c407a80f11bdd9724f9e8f885dc725e9 (patch) | |
tree | 1cf2c6eb0346ffb5e408d6173c3ef00054472704 /src/SemanticScuttle/DbService.php | |
parent | 60bb032d75852a65b7de91a6391f595bc2f04edb (diff) | |
download | semanticscuttle-00ba74e0c407a80f11bdd9724f9e8f885dc725e9.tar.gz semanticscuttle-00ba74e0c407a80f11bdd9724f9e8f885dc725e9.tar.bz2 |
introduce dbservice, a service base class that has a database variable, table variable and getter/setter for table
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@400 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle/DbService.php')
-rw-r--r-- | src/SemanticScuttle/DbService.php | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/SemanticScuttle/DbService.php b/src/SemanticScuttle/DbService.php new file mode 100644 index 0000000..875ee98 --- /dev/null +++ b/src/SemanticScuttle/DbService.php @@ -0,0 +1,67 @@ +<?php +/** + * SemanticScuttle - your social bookmark manager. + * + * PHP version 5. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske <cweiske@cweiske.de> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ + +/** + * Base class for services utilizing the database. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske <cweiske@cweiske.de> + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ +class SemanticScuttle_DbService extends SemanticScuttle_Service +{ + /** + * Database object + * + * @var sql_db + */ + protected $db; + + + + /** + * Database table name + * + * @var string + */ + protected $tablename; + + + + /** + * Returns database table name + * + * @return string Table name + */ + public function getTableName() + { + return $this->tablename; + } + + + + /** + * Set the database table name + * + * @param string $value New table name + * + * @return void + */ + function setTableName($value) + { + $this->tablename = $value; + } + +} |