moved menu/styles.css to bootstrap, as well as nowplaying javascript since they should be on everypage almost except for the login screen currently.
This commit is contained in:
parent
7751ad7ac7
commit
a9f8a2b5d0
11 changed files with 25 additions and 92 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