1 | <?php |
||
15 | class DefaultController extends Controller |
||
16 | { |
||
17 | public function behaviors() |
||
29 | |||
30 | /** |
||
31 | * Lists all SystemLog models. |
||
32 | * @return mixed |
||
33 | */ |
||
34 | public function actionIndex() |
||
52 | |||
53 | /** |
||
54 | * Displays a single SystemLog models. |
||
55 | * @param integer $id |
||
56 | * @return mixed |
||
57 | */ |
||
58 | public function actionView($id) |
||
64 | |||
65 | /** |
||
66 | * Deletes an existing SystemLog models. |
||
67 | * If deletion is successful, the browser will be redirected to the 'index' page. |
||
68 | * @param integer $id |
||
69 | * @return mixed |
||
70 | */ |
||
71 | public function actionDelete($id) |
||
77 | |||
78 | /** |
||
79 | * Finds the SystemLog models based on its primary key value. |
||
80 | * If the models is not found, a 404 HTTP exception will be thrown. |
||
81 | * @param integer $id |
||
82 | * @return SystemLog the loaded models |
||
83 | * @throws NotFoundHttpException if the models cannot be found |
||
84 | */ |
||
85 | protected function findModel($id) |
||
93 | } |
||
94 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.