subsecond getter/setter overrides.

This commit is contained in:
naomiaro 2010-11-10 15:30:05 -05:00
parent d6caebe49a
commit f7dc117417
10 changed files with 134 additions and 35 deletions

View file

@ -1,6 +1,6 @@
<?php
require_once('Common.php');
/**
* Skeleton subclass for representing a row from the 'cc_files' table.
@ -15,4 +15,15 @@
*/
class CcFiles extends BaseCcFiles {
public function getDbLength()
{
return Common::getTimeInSub($this, 'LENGTH');
}
public function setDbLength($time)
{
return Common::setTimeInSub($this, 'LENGTH', $time);
}
} // CcFiles