CC-3548: Schedule: Separate repeate show template and single instance on

'When' section

- UI portion of the feature
This commit is contained in:
James 2012-04-04 14:53:26 -04:00
parent 3be1944fa4
commit 5da7d42290
4 changed files with 69 additions and 10 deletions

View file

@ -743,4 +743,12 @@ class Application_Model_ShowInstance {
return $CC_DBC->GetAll($sql);
}
function isRepeating(){
if ($this->getShow()->isRepeating()){
return true;
}else{
return false;
}
}
}