$sort = []; if($requestSort){ foreach(array_keys($requestSort) as $item){ $sort[$item] = ($requestSort[$item] == 'desc')?($reverse?SORT_ASC:SORT_DESC):($reverse?SORT_DESC:SORT_ASC); } }else{ $sort = ['sort'=>($reverse?SORT_ASC:SORT_DESC)]; } return $model->find()->where(['status'=>1,'category_id'=>$data->category_id]) //->andWhere([$sign,'id',$data->id]) ->andWhere([$sign,'sort',$data->sort]) ->orderBy($sort)->select(['id','category_id','title'])->one(); } /** * 重置视图渲染 * @param string $view * @param array $params
$sort[$item] = ($requestSort[$item] == 'desc')?($reverse?SORT_ASC:SORT_DESC):($reverse?SORT_DESC:SORT_ASC); } }else{ $sort = ['sort'=>($reverse?SORT_ASC:SORT_DESC)]; } return $model->find()->where(['status'=>1,'category_id'=>$data->category_id]) //->andWhere([$sign,'id',$data->id]) ->andWhere([$sign,'sort',$data->sort]) ->orderBy($sort)->select(['id','category_id','title'])->one(); } /**
// 更新浏览量 if(isset($data->views)){ $data->updateCounters(['views'=>1]); } // 前后翻页按钮 $assign['prevLink'] = $this->findPageQuery($model,$data,'>',true); $assign['nextLink'] = $this->findPageQuery($model,$data,'<'); return $this->render($this->findNodeDetailView(['detail'=>$data]),$assign); } /**
} /** * 内容详情 */ public function actionDetail(){ return $this->nodeDetail(); } /** * 附件下载 */ public function actionDownload(){
$args = $this->controller->bindActionParams($this, $params); Yii::trace('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
} $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
$parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); Yii::$app->controller = $oldController; return $result; } else { $id = $this->getUniqueId(); throw new InvalidRouteException('Unable to resolve the request "' . ($id === '' ? $route : $id . '/' . $route) . '".');
$params = $this->catchAll; unset($params[0]); } try { Yii::trace("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } else { $response = $this->getResponse(); if ($result !== null) { $response->data = $result;
try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
require(__DIR__ . '/../../common/config/main-local.php'), require(__DIR__ . '/../config/main.php'), require(__DIR__ . '/../config/main-local.php') ); $application = new yii\web\Application($config); $application->run();
$_GET = [ 'category_id' => '259', 'id' => '2830', ]; $_COOKIE = [ '_homeCSRF' => '5ae97b9cba74d4cce1a2de1f1fa9217fbfcf5f593b121c590339e41ffe48c0d8a:2:{i:0;s:9:"_homeCSRF";i:1;s:32:"lsdbG1s9QwCss7ajjgtkeIl7yR2UlCU8";}', ];