subsecond getter/setter overrides.
This commit is contained in:
parent
d6caebe49a
commit
f7dc117417
10 changed files with 134 additions and 35 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue