html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" Pin-Up
/home/yogaa/public_html/themes/default/views/users/default/uye.php(65)
53THelper::iletisimMail($_POST['eposta'], $uyemerkez->eposta, $mesaj, Pin-Up "Merkez Formu", 3);54echo "<script>alert('Mesajınız alınmıştır. En kısa sürede tarafınıza dönüş Pin-Up sağlanacaktır. Teşekkürler')</script>";55 } else { 56 echo "<script>alert('Mesajınız şuan gönderilemedi lütfen daha sonra tekrar deneyiniz veya iletişim numaralarımızdan ulaşınız.')</script>"; 57 } 58 } else { 59echo "<script>alert('Mesajı gönderirken, spam olmadığınızı Pin-Up doğrulamadınız. Lütfen tekrar deneyiniz');</script>";;60 } 61 } 62 } 63 ?> 64 <!-- 65<?php //if ($item->member_type Pin-Up == "Merkez") { ?> style="background-image:url('<?php echo $item->getMerkez() ?>')" <?php // } ?>66 --> 67 <section class="breadcrumb uyeler" > 68 <div class="container"> 69 <div class="row"> 70 <div class="col-12 text-center"> 71 <?php if ($item->member_type == "Merkez") { ?> 72 <h1><?php echo $item->fullname ?></h1> 73 <?php } else { ?> 74 <h1><?php echo $item->fullname ?></h1> 75 <?php } ?> 76 </div> 77 <div class="col-12">
#0 | + – /home/yogaa/public_html/framework/web/CBaseController.php(126): require()121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#1 | + – /home/yogaa/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/yogaa/public_html/themes/default/views/users/default/uye.p...", array("item" => null), true)090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#2 | + – /home/yogaa/public_html/framework/web/CController.php(872): CBaseController->renderFile("/home/yogaa/public_html/themes/default/views/users/default/uye.p...", array("item" => null), true)867 */ 868 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 869 { 870 if(($viewFile=$this->getViewFile($view))!==false) 871 { 872 $output=$this->renderFile($viewFile,$data,true); 873 if($processOutput) 874 $output=$this->processOutput($output); 875 if($return) 876 return $output; 877 else |
#3 | + – /home/yogaa/public_html/framework/web/CController.php(785): CController->renderPartial("uye", array("item" => null), true)780 */ 781 public function render($view,$data=null,$return=false) 782 { 783 if($this->beforeRender($view)) 784 { 785 $output=$this->renderPartial($view,$data,true); 786 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 787 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 788 789 $this->afterRender($view,$output); 790 |
#4 | + – /home/yogaa/public_html/protected/modules/users/controllers/front/DefaultController.php(41): CController->render("uye", array("item" => null))36 $items = User::model()->findAllBySql($sql); 37 $this->render('uyeler',array('items'=>$items)); 38 } 39 public function actionUye($id){ 40 $items = User::model()->findByPk($id); 41 $this->render('uye',array('item'=>$items)); 42 if($_POST['User']['company_tags']){ 43 $model->company_tags = implode(',',$_POST['User']['company_tags']); 44 } 45 } 46 |
#5 | unknown(0): DefaultController->actionUye("yogaacademysancaktepe") |
#6 | + – /home/yogaa/public_html/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(DefaultController, array("yogaacademysancaktepe"))104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#7 | + – /home/yogaa/public_html/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(DefaultController, ReflectionMethod, array("id" => "yogaacademysancaktepe"))42 { 43 $methodName='action'.$this->getId(); 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#8 | + – /home/yogaa/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("id" => "yogaacademysancaktepe"))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 | + – /home/yogaa/public_html/framework/web/CController.php(286): CController->runAction(CInlineAction)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 | + – /home/yogaa/public_html/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, 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 | + – /home/yogaa/public_html/framework/web/CWebApplication.php(282): CController->run("uye")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 286throw new CHttpException(404,Yii::t('yii','Unable to resolve the request Pin-Up "{route}".',287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 | + – /home/yogaa/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("users/default/uye/id/yogaacademysancaktepe")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 Pin-Up core application components.146* This method Pin-Up overrides the parent implementation by registering additional core components. |
#13 | + – /home/yogaa/public_html/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 /** |
#14 | + – /home/yogaa/public_html/protected/components/WebApplicationEndBehavior.php(32): CApplication->run()27 // Attach the changeModulePaths event handler 28 // and raise it. 29 $this->onModuleCreate = array($this, 'changeModulePaths'); 30 $this->onModuleCreate(new CEvent($this->owner)); 31 32 $this->owner->run(); // Run application. 33 } 34 35// Pin-Up This event should be raised when CWebApplication36// or CWebModule Pin-Up instances are being initialized.37 public function onModuleCreate($event) |
#15 | + – /home/yogaa/public_html/framework/base/CComponent.php(261): WebApplicationEndBehavior->runEnd("front")256 if($this->_m!==null) 257 { 258 foreach($this->_m as $object) 259 { 260 if($object->getEnabled() && method_exists($object,$name)) 261 return call_user_func_array(array($object,$name),$parameters); 262 } 263 } 264if(class_exists('Closure', false) && ($this->canGetProperty($name) || Pin-Up property_exists($this, $name)) && $this->$name instanceof Closure)265 return call_user_func_array($this->$name, $parameters); 266throw new CException(Yii::t('yii','{class} and its behaviors do not have Pin-Up a method or closure named "{name}".', |
#16 | + – /home/yogaa/public_html/index.php(23): CComponent->__call("runEnd", array("front"))18 return parent::init(); 19 } 20 } 21 22 $app = new KraftCMS($config); 23 $app->runEnd('front'); 24 |