/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/db/ar/CActiveRecord.php(2310)
2298 private $_model; 2299 2300 /** 2301 * Constructor. 2302 * @param CActiveRecord $model the model instance 2303 */ 2304 public function __construct($model) 2305 { 2306 $this->_model=$model; 2307 2308 $tableName=$model->tableName(); 2309 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null) 2310 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.', 2311 array('{class}'=>get_class($model),'{table}'=>$tableName))); 2312 if($table->primaryKey===null) 2313 { 2314 $table->primaryKey=$model->primaryKey(); 2315 if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey])) 2316 $table->columns[$table->primaryKey]->isPrimaryKey=true; 2317 elseif(is_array($table->primaryKey)) 2318 { 2319 foreach($table->primaryKey as $name) 2320 { 2321 if(isset($table->columns[$name])) 2322 $table->columns[$name]->isPrimaryKey=true;
| #0 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/db/ar/CActiveRecord.php(387): CActiveRecordMetaData->__construct(Members) 382 if(isset(self::$_models[$className])) 383 return self::$_models[$className]; 384 else 385 { 386 $model=self::$_models[$className]=new $className(null); 387 $model->_md=new CActiveRecordMetaData($model); 388 $model->attachBehaviors($model->behaviors()); 389 return $model; 390 } 391 } 392 |
| #1 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/protected/extensions/giix-components/GxActiveRecord.php(26): CActiveRecord::model("Members") 21 * composite pk table. Usually a character. 22 */ 23 public static $pkSeparator = '-'; 24 25 public static function model($className=__CLASS__) { 26 return parent::model($className); 27 } 28 29 /** 30 * This method should be overridden to declare related pivot models for each MANY_MANY relationship. 31 * The pivot model is used by {@link saveWithRelated}. |
| #2 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/protected/models/_base/BaseMembers.php(62): GxActiveRecord::model("Members") 57 * 58 */ 59 abstract class BaseMembers extends GxActiveRecord { 60 61 public static function model($className=__CLASS__) { 62 return parent::model($className); 63 } 64 65 public function tableName() { 66 return 'Members'; 67 //return 'members'; |
| #3 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/protected/models/Members.php(17): BaseMembers::model("Members") 12 public $sanction_info; 13 public $sanction_keyDate; 14 public $sanction_state; 15 16 public static function model($className=__CLASS__) { 17 return parent::model($className); 18 } 19 20 public function rules() { 21 return CMap::mergeArray(parent::rules(), 22 array( |
| #4 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/protected/controllers/SiteController.php(154): Members::model() 149 $db = Yii::app()->db; 150 $command = $db->createCommand('SELECT Members.member_id FROM Members WHERE Members.idNumber = :idnumber LIMIT 1'); 151 $command->bindValue(':idnumber', $id, PDO::PARAM_STR); 152 $id = $command->queryScalar(); 153 } 154 $model= Members::model()->with(array('type', 'certificate', 'listWorks'))->findByPk($id); 155 156 $criteria = new CDbCriteria(); 157 $criteria->compare('id_member', $id); 158 $sanctions = new CActiveDataProvider(new Sanction(), array( 159 'criteria' => $criteria, |
| #5 |
unknown(0): SiteController->actionView("76")
|
| #6 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(SiteController, array("76")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
| #7 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(SiteController, ReflectionMethod, array("Auditplan_page" => "4", "Auditplan_sort" => "yearplan", "id" => "76")) 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 else 49 return $controller->$methodName(); 50 } 51 52 } |
| #8 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/web/CController.php(308): CInlineAction->runWithParams(array("Auditplan_page" => "4", "Auditplan_sort" => "yearplan", "id" => "76")) 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/users/b/baikalsro/domains/baikalsro.ru/reestr/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/users/b/baikalsro/domains/baikalsro.ru/reestr/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/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/web/CWebApplication.php(282): CController->run("view") 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))); |
| #12 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/web/CWebApplication.php(141): CWebApplication->runController("site/view") 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. |
| #13 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/framework/base/CApplication.php(169): CWebApplication->processRequest() 164 public function run() 165 { 166 if($this->hasEventHandler('onBeginRequest')) 167 $this->onBeginRequest(new CEvent($this)); 168 register_shutdown_function(array($this,'end'),0,false); 169 $this->processRequest(); 170 if($this->hasEventHandler('onEndRequest')) 171 $this->onEndRequest(new CEvent($this)); 172 } 173 174 /** |
| #14 |
+
–
/home/users/b/baikalsro/domains/baikalsro.ru/reestr/index.php(17): CApplication->run() 12 defined('YII_DEBUG') or define('YII_DEBUG',true); 13 // specify how many levels of call stack should be shown in each log message 14 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 15 16 require_once($yii); 17 Yii::createWebApplication($config)->run(); 18 |