Merge branch 'master' of dev.sourcefabric.org:airtime
This commit is contained in:
commit
be79b21c37
15 changed files with 326 additions and 229 deletions
|
@ -11,6 +11,18 @@ class Show {
|
|||
$this->_showId = $showId;
|
||||
}
|
||||
|
||||
public function getName() {
|
||||
$show = CcShowQuery::create()->findPK($this->_showId);
|
||||
|
||||
return $show->getDbName();
|
||||
}
|
||||
|
||||
public function setName($name) {
|
||||
$show = CcShowQuery::create()->findPK($this->_showId);
|
||||
|
||||
$show->setDbName($name);
|
||||
}
|
||||
|
||||
//end dates are non inclusive.
|
||||
public function addShow($data) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue