Blame view

frontend/controllers/PuttyController.php 690 Bytes
8df80521   Alexander Karnovsky   not fixed commite
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
  <?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');
      }
  
8df80521   Alexander Karnovsky   not fixed commite
30
  
8df80521   Alexander Karnovsky   not fixed commite
31
32
33
34
35
36
37
38
39
40
41
  
  
      public function actionContacts(){
          return $this->render('contacts');
      }
  
      public function actionDelivery(){
          return $this->render('delivery');
      }
  
  }