PuttyController.php
889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace frontend\controllers;
use Yii;
use yii\web\Controller;
/**
* Site controller
*/
class PuttyController extends Controller
{
public function actionCatalog(){
return $this->render('catalog');
}
public function actionItemCardOpen(){
return $this->render('item-card-open');
}
public function actionCategory(){
return $this->render('category');
}
public function actionManufacturers(){
return $this->render('manufacturers');
}
public function actionBasketStepFirst(){
return $this->render('basket-step-01');
}
public function actionBasketStepSecond(){
return $this->render('basket-step-02');
}
public function actionContacts(){
return $this->render('contacts');
}
public function actionDelivery(){
return $this->render('delivery');
}
}