Held June 12, 2021 at the OC Fair and Event Center, Costa Mesa, California
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/db/ar/CActiveRecord.php(144)
132 */ 133 public function __get($name) 134 { 135 if(isset($this->_attributes[$name])) 136 return $this->_attributes[$name]; 137 else if(isset($this->getMetaData()->columns[$name])) 138 return null; 139 else if(isset($this->_related[$name])) 140 return $this->_related[$name]; 141 else if(isset($this->getMetaData()->relations[$name])) 142 return $this->getRelated($name); 143 else 144 return parent::__get($name); 145 } 146 147 /** 148 * PHP setter magic method. 149 * This method is overridden so that AR attributes can be accessed like properties. 150 * @param string $name property name 151 * @param mixed $value property value 152 */ 153 public function __set($name,$value) 154 { 155 if($this->setAttribute($name,$value)===false) 156 {
#0 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/db/ar/CActiveRecord.php(144): CComponent->__get("results_page_active") 139 else if(isset($this->_related[$name])) 140 return $this->_related[$name]; 141 else if(isset($this->getMetaData()->relations[$name])) 142 return $this->getRelated($name); 143 else 144 return parent::__get($name); 145 } 146 147 /** 148 * PHP setter magic method. 149 * This method is overridden so that AR attributes can be accessed like properties. |
#1 |
+
–
/home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(1521): CActiveRecord->__get("results_page_active") 1516 1517 <div class="container">'; 1518 1519 // If the Results page is not yet active and we are not an admin, display the 'Pending' message 1520 $configModel=Config::model()->findByPk(1); 1521 $resultsPageActive = $configModel->results_page_active; 1522 if (($resultsPageActive == 0) && Yii::app()->user->isGuest ) { 1523 echo '<div style="font-size:200%;text-align:center;"><br/><br/>'. $configModel->results_pending_message .'</div>'; 1524 return FALSE; 1525 } 1526 |
#2 |
+
–
/home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(1098): CompetitionEntriesController->resultsWebPageHeader("1") 1093 * Web Page of Results Grouped by Award 1094 */ 1095 public function actionResultsWebPagebyAward() { 1096 $this->layout = 'printMailForm'; 1097 1098 if ($this->resultsWebPageHeader('1') === FALSE) { 1099 return; 1100 } 1101 1102 1103 |
#3 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/actions/CInlineAction.php(50): CompetitionEntriesController->actionResultsWebPagebyAward() 45 $controller=$this->getController(); 46 $method=new ReflectionMethod($controller, $methodName); 47 if($method->getNumberOfParameters()>0) 48 return $this->runWithParamsInternal($controller, $method, $params); 49 else 50 return $controller->$methodName(); 51 } 52 53 } |
#4 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CController.php(309): CInlineAction->runWithParams(array("r" => "competitionEntries/resultsWebPagebyAward")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#5 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#6 |
+
–
/home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(282): CFilterChain->run() 277 } 278 279 public function filterWineMakerContext($filterChain) { 280 281 282 $filterChain->run(); 283 } 284 285 /** 286 * We need to assign a numerically increasing value to the wine. 287 * |
#7 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CInlineFilter.php(59): CompetitionEntriesController->filterWineMakerContext(CFilterChain) 54 * @param CFilterChain $filterChain the filter chain that the filter is on. 55 */ 56 public function filter($filterChain) 57 { 58 $method='filter'.$this->name; 59 $filterChain->controller->$method($filterChain); 60 } 61 } |
#8 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#9 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CFilter.php(41): CFilterChain->run() 36 */ 37 public function filter($filterChain) 38 { 39 if($this->preFilter($filterChain)) 40 { 41 $filterChain->run(); 42 $this->postFilter($filterChain); 43 } 44 } 45 46 /** |
#10 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CController.php(1146): CFilter->filter(CFilterChain) 1141 */ 1142 public function filterAccessControl($filterChain) 1143 { 1144 $filter=new CAccessControlFilter; 1145 $filter->setRules($this->accessRules()); 1146 $filter->filter($filterChain); 1147 } 1148 1149 /** 1150 * Returns a persistent page state value. 1151 * A page state is a variable that is persistent across POST requests of the same page. |
#11 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CInlineFilter.php(59): CController->filterAccessControl(CFilterChain) 54 * @param CFilterChain $filterChain the filter chain that the filter is on. 55 */ 56 public function filter($filterChain) 57 { 58 $method='filter'.$this->name; 59 $filterChain->controller->$method($filterChain); 60 } 61 } |
#12 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } |
#13 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CController.php(292): CFilterChain->run() 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); 293 $this->_action=$priorAction; 294 } 295 } 296 297 /** |
#14 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CController.php(266): CController->runActionWithFilters(CInlineAction, array("accessControl", "wineMakerContext")) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#15 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CWebApplication.php(276): CController->run("resultsWebPagebyAward") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#16 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/web/CWebApplication.php(135): CWebApplication->runController("competitionEntries/resultsWebPagebyAward") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#17 |
+
–
/home/competitionocws/public_html/yii-1.1.9.r3527/framework/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#18 |
+
–
/home/competitionocws/public_html/index.php(14): CApplication->run() 09 // specify how many levels of call stack should be shown in each log message 10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 11 12 13 require_once($yii); 14 Yii::createWebApplication($config)->run(); 15 |