Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Alto
/
rkn
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 8289f5ad
authored
2021-06-08 18:38:53 +0300
by
Скуратович Александр
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
добавил класс ajax
1 parent
328a2c0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
0 deletions
controllers/AjaxController.php
controllers/AjaxController.php
0 → 100644
View file @
8289f5a
<?php
namespace
app\controllers
;
use
app\models\Host
;
use
Yii
;
use
yii\db\Query
;
use
yii\filters\AccessControl
;
use
yii\web\Controller
;
use
yii\web\Response
;
use
yii\filters\VerbFilter
;
class
AjaxController
extends
Controller
{
/**
* {@inheritdoc}
*/
public
function
behaviors
()
{
return
[
'access'
=>
[
'class'
=>
AccessControl
::
className
(),
'rules'
=>
[
[
'actions'
=>
[
'calc-status'
],
'allow'
=>
true
,
'roles'
=>
[
'@'
],
],
],
],
'contentNegotiator'
=>
[
'class'
=>
'yii\filters\ContentNegotiator'
,
'formats'
=>
[
'application/json'
=>
Response
::
FORMAT_JSON
,
],
],
'verbs'
=>
[
'class'
=>
VerbFilter
::
className
(),
'actions'
=>
[
'get-plants'
=>
[
'GET'
]
],
],
];
}
/**
* Displays homepage.
*
* @return string
*/
public
function
actionCalcStatus
()
{
$query
=
(
new
Query
())
->
from
(
'{{%host}}'
);
foreach
(
$query
->
batch
(
10
)
as
$hosts
)
{
}
return
[
'controller'
=>
'ajax'
,
'is_guest'
=>
Yii
::
$app
->
user
->
isGuest
,
'user_id'
=>
Yii
::
$app
->
user
->
getId
()
];
}
}
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment