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_playlistcontents' table.
|
||||
|
@ -15,4 +15,57 @@
|
|||
*/
|
||||
class CcPlaylistcontents extends BaseCcPlaylistcontents {
|
||||
|
||||
public function getDbFadein()
|
||||
{
|
||||
return Common::getTimeInSub($this, 'FADEIN');
|
||||
}
|
||||
|
||||
public function setDbFadein($time)
|
||||
{
|
||||
return Common::setTimeInSub($this, 'FADEIN', $time);
|
||||
}
|
||||
|
||||
public function getDbFadeout()
|
||||
{
|
||||
return Common::getTimeInSub($this, 'FADEOUT');
|
||||
}
|
||||
|
||||
public function setDbFadeout($time)
|
||||
{
|
||||
return Common::setTimeInSub($this, 'FADEOUT', $time);
|
||||
}
|
||||
|
||||
public function getDbCuein()
|
||||
{
|
||||
return Common::getTimeInSub($this, 'CUEIN');
|
||||
}
|
||||
|
||||
public function setDbCuein($time)
|
||||
{
|
||||
return Common::setTimeInSub($this, 'CUEIN', $time);
|
||||
}
|
||||
|
||||
public function getDbCueout()
|
||||
{
|
||||
return Common::getTimeInSub($this, 'CUEOUT');
|
||||
}
|
||||
|
||||
public function setDbCueout($time)
|
||||
{
|
||||
return Common::setTimeInSub($this, 'CUEOUT', $time);
|
||||
}
|
||||
|
||||
public function getDbCliplength()
|
||||
{
|
||||
return Common::getTimeInSub($this, 'CLIPLENGTH');
|
||||
}
|
||||
|
||||
public function setDbCliplength($time)
|
||||
{
|
||||
return Common::setTimeInSub($this, 'CLIPLENGTH', $time);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
} // CcPlaylistcontents
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue