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_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