/var/www/html/forms/vendor/yiisoft/yii/framework/web/CAssetManager.php(257)
245 { 246 CFileHelper::copyDirectory($src,$dstDir,array( 247 'exclude'=>$this->excludeFiles, 248 'level'=>$level, 249 'newDirMode'=>$this->newDirMode, 250 'newFileMode'=>$this->newFileMode, 251 )); 252 } 253 254 return $this->_published[$path]=$this->getBaseUrl().'/'.$dir; 255 } 256 } 257 throw new CException(Yii::t('yii','The asset "{asset}" to be published does not exist.', 258 array('{asset}'=>$path))); 259 } 260 261 /** 262 * Returns the published path of a file path. 263 * This method does not perform any publishing. It merely tells you 264 * if the file or directory is published, where it will go. 265 * @param string $path directory or file path being published 266 * @param boolean $hashByName whether the published directory should be named as the hashed basename. 267 * If false, the name will be the hash taken from dirname of the path being published and path mtime. 268 * Defaults to false. Set true if the path being published is shared among 269 * different extensions.
#0 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CClientScript.php(546): CAssetManager->publish(false) 541 if($baseUrl==='' || $baseUrl[0]!=='/' && strpos($baseUrl,'://')===false) 542 $baseUrl=Yii::app()->getRequest()->getBaseUrl().'/'.$baseUrl; 543 $baseUrl=rtrim($baseUrl,'/'); 544 } 545 elseif(isset($package['basePath'])) 546 $baseUrl=Yii::app()->getAssetManager()->publish(Yii::getPathOfAlias($package['basePath'])); 547 else 548 $baseUrl=$this->getCoreScriptUrl(); 549 550 return $this->coreScripts[$name]['baseUrl']=$baseUrl; 551 } |
#1 |
+
–
/var/www/html/forms/application/core/LSYii_ClientScript.php(374): CClientScript->getPackageBaseUrl("jquery") 369 $cssFiles = array(); 370 $jsFiles = array(); 371 $jsFilesPositioned = array(); 372 373 foreach ($this->coreScripts as $name => $package) { 374 $baseUrl = $this->getPackageBaseUrl($name); 375 if (!empty($package['js'])) { 376 foreach ($package['js'] as $js) { 377 if (isset($package['position'])) { 378 $jsFilesPositioned[$package['position']][$baseUrl . '/' . $js] = $baseUrl . '/' . $js; 379 } else { |
#2 |
+
–
/var/www/html/forms/application/core/LSYii_ClientScript.php(634): LSYii_ClientScript->renderCoreScripts() 629 } 630 if (!$this->hasScripts) { 631 return; 632 } 633 634 $this->renderCoreScripts(); 635 636 if (!empty($this->scriptMap)) { 637 $this->remapScripts(); 638 } 639 |
#3 |
+
–
/var/www/html/forms/application/core/SurveyCommonAction.php(398): LSYii_ClientScript->render("<!DOCTYPE html>
<html lang="de" dir="ltr" >
<head>
<meta ht...") 393 $renderFile = $basePath . '/' . $sRenderFile; 394 } 395 $content = $this->renderCentralContents($sAction, $aViewUrls, $aData); 396 $out = $this->renderInternal($renderFile, ['content' => $content, 'aData' => $aData], true); 397 398 App()->getClientScript()->render($out); 399 echo $out; 400 } 401 402 /** 403 * Display the update notification |
#4 |
+
–
/var/www/html/forms/application/controllers/admin/index.php(94): SurveyCommonAction->renderWrappedTemplate("super", "welcome", array("issuperadmin" => true, "showLastSurvey" => false, "showLastQuestion" => false, "countSurveyList" => 0, ...)) 89 $aData['oSurveySearch'] = new Survey('search'); 90 $aData['bShowLastSurveyAndQuestion'] = (getGlobalSetting('show_last_survey_and_question') == "show"); 91 $aData['iBoxesByRow'] = (int) getGlobalSetting('boxes_by_row'); 92 $aData['sBoxesOffSet'] = (int) getGlobalSetting('boxes_offset'); 93 $aData['bBoxesInContainer'] = (getGlobalSetting('boxes_in_container') == 'yes'); 94 $this->renderWrappedTemplate('super', 'welcome', $aData); 95 } 96 } |
#5 |
unknown(0): Index->run()
|
#6 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/actions/CAction.php(115): ReflectionMethod->invokeArgs(Index, array()) 110 elseif($param->isDefaultValueAvailable()) 111 $ps[]=$param->getDefaultValue(); 112 else 113 return false; 114 } 115 $method->invokeArgs($object,$ps); 116 return true; 117 } 118 } |
#7 |
+
–
/var/www/html/forms/application/core/SurveyCommonAction.php(83): CAction->runWithParamsInternal(Index, ReflectionMethod, array()) 78 $oMethod = new ReflectionMethod($this, $sDefault); 79 } 80 81 // We're all good to go, let's execute it 82 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 83 return parent::runWithParamsInternal($this, $oMethod, $params); 84 } 85 86 /** 87 * Some functions have different parameters, which are just an alias of the 88 * usual parameters we're getting in the url. This function just populates |
#8 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CController.php(308): SurveyCommonAction->runWithParams(array()) 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; |
#9 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CController.php(286): CController->runAction(Index) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#10 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CController.php(265): CController->runActionWithFilters(Index, array()) 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); |
#11 |
+
–
/var/www/html/forms/application/controllers/AdminController.php(202): CController->run("") 197 } 198 199 $this->runModuleController($action); 200 201 202 return parent::run($action); 203 } 204 205 /** 206 * Starting with LS4, 3rd party developer can extends any of the LimeSurve controllers. 207 * |
#12 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CWebApplication.php(282): AdminController->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))); |
#13 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("admin") 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. |
#14 |
+
–
/var/www/html/forms/vendor/yiisoft/yii/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#15 |
+
–
/var/www/html/forms/index.php(161): CApplication->run() 156 require_once APPPATH . 'core/LSYii_Application' . EXT; 157 158 $config = require_once(APPPATH . 'config/internal' . EXT); 159 160 Yii::$enableIncludePath = false; 161 Yii::createApplication('LSYii_Application', $config)->run(); 162 163 /* End of file index.php */ 164 /* Location: ./index.php */ |