application/backgroundtasks/controllers/ManageController.php 1 location
|
@@ 45-57 (lines=13) @@
|
| 42 |
|
* View all Task models. |
| 43 |
|
* @return string |
| 44 |
|
*/ |
| 45 |
|
public function actionIndex() |
| 46 |
|
{ |
| 47 |
|
$searchModel = new Task(['scenario' => 'search']); |
| 48 |
|
$dataProvider = $searchModel->search($_GET); |
| 49 |
|
|
| 50 |
|
return $this->render( |
| 51 |
|
'index', |
| 52 |
|
[ |
| 53 |
|
'dataProvider' => $dataProvider, |
| 54 |
|
'searchModel' => $searchModel, |
| 55 |
|
] |
| 56 |
|
); |
| 57 |
|
} |
| 58 |
|
|
| 59 |
|
/** |
| 60 |
|
* Updates an existing Task model. |
application/modules/core/backend/WysiwygController.php 1 location
|
@@ 40-49 (lines=10) @@
|
| 37 |
|
* Lists all Wysiwyg models. |
| 38 |
|
* @return mixed |
| 39 |
|
*/ |
| 40 |
|
public function actionIndex() |
| 41 |
|
{ |
| 42 |
|
$searchModel = new Wysiwyg(['scenario' => 'search']); |
| 43 |
|
$dataProvider = $searchModel->search($_GET); |
| 44 |
|
|
| 45 |
|
return $this->render('index', [ |
| 46 |
|
'dataProvider' => $dataProvider, |
| 47 |
|
'searchModel' => $searchModel |
| 48 |
|
]); |
| 49 |
|
} |
| 50 |
|
|
| 51 |
|
/** |
| 52 |
|
* Displays a single Wysiwyg model. |
application/modules/seo/controllers/ManageController.php 1 location
|
@@ 427-438 (lines=12) @@
|
| 424 |
|
* Show list of Redirect models |
| 425 |
|
* @return string |
| 426 |
|
*/ |
| 427 |
|
public function actionRedirect() |
| 428 |
|
{ |
| 429 |
|
$searchModel = new Redirect(['scenario' => 'search']); |
| 430 |
|
$dataProvider = $searchModel->search($_GET); |
| 431 |
|
return $this->render( |
| 432 |
|
'redirect', |
| 433 |
|
[ |
| 434 |
|
'dataProvider' => $dataProvider, |
| 435 |
|
'searchModel' => $searchModel, |
| 436 |
|
] |
| 437 |
|
); |
| 438 |
|
} |
| 439 |
|
|
| 440 |
|
/** |
| 441 |
|
* Creates a new Redirect model. |