/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CController.php(878)
866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else 875 echo $output; 876 } 877 else 878 throw new CException(Yii::t('yii','{controller} cannot find the requested view "{view}".', 879 array('{controller}'=>get_class($this), '{view}'=>$view))); 880 } 881 882 /** 883 * Renders a named clip with the supplied parameters. 884 * This is similar to directly accessing the {@link clips} property. 885 * The main difference is that it can take an array of named parameters 886 * which will replace the corresponding placeholders in the clip. 887 * @param string $name the name of the clip 888 * @param array $params an array of named parameters (name=>value) that should replace 889 * their corresponding placeholders in the clip 890 * @param boolean $return whether to return the clip content or echo it.
#0 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CController.php(782): CController->renderPartial("index", array("model" => nordsoftware\yii_account\models\form\SignupForm), true) 777 */ 778 public function render($view,$data=null,$return=false) 779 { 780 if($this->beforeRender($view)) 781 { 782 $output=$this->renderPartial($view,$data,true); 783 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 784 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 785 786 $this->afterRender($view,$output); 787 |
#1 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/src/controllers/SignupController.php(86): CController->render("index", array("model" => nordsoftware\yii_account\models\form\SignupForm)) 81 $this->sendActivationMail($account); 82 $this->redirect('done'); 83 } 84 } 85 86 $this->render('index', array('model' => $model)); 87 } 88 89 /** 90 * Sends the activation email to the given account. 91 * |
#2 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/actions/CInlineAction.php(49): nordsoftware\yii_account\controllers\SignupController->actionIndex() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#3 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("r" => "account/register")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#4 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(133): CController->runAction(CInlineAction) 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#5 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/src/controllers/Controller.php(34): CFilterChain->run() 29 { 30 if (!\Yii::app()->user->isGuest) { 31 $this->redirect(\Yii::app()->homeUrl); 32 } 33 34 $filterChain->run(); 35 } 36 37 /** 38 * @param \CFilterChain $filterChain 39 */ |
#6 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/filters/CInlineFilter.php(58): nordsoftware\yii_account\controllers\Controller->filterGuestOnly(CFilterChain) 53 * @param CFilterChain $filterChain the filter chain that the filter is on. 54 */ 55 public function filter($filterChain) 56 { 57 $method='filter'.$this->name; 58 $filterChain->controller->$method($filterChain); 59 } 60 } |
#7 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/filters/CFilterChain.php(130): CInlineFilter->filter(CFilterChain) 125 { 126 if($this->offsetExists($this->filterIndex)) 127 { 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#8 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
#9 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("guestOnly + index", "validateToken + activate")) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#10 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): CController->run("") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#11 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("account/register") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#12 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/vendor/yiisoft/yii/framework/base/CApplication.php(184): CWebApplication->processRequest() 179 public function run() 180 { 181 if($this->hasEventHandler('onBeginRequest')) 182 $this->onBeginRequest(new CEvent($this)); 183 register_shutdown_function(array($this,'end'),0,false); 184 $this->processRequest(); 185 if($this->hasEventHandler('onEndRequest')) 186 $this->onEndRequest(new CEvent($this)); 187 } 188 189 /** |
#13 |
+
–
/Users/Crisu/Dev/Web/GitHub/NordSoftware/yii-account/tests/app/www/index.php(16): CApplication->run() 11 require("$vendor/autoload.php"); 12 require("$vendor/yiisoft/yii/framework/yii.php"); 13 14 $config = require("$tests/app/config/web.php"); 15 16 Yii::createWebApplication($config)->run(); |