Blame view

src/app/frontend/controllers/SeriesOfLettersController.php 509 Bytes
e22db2b7   Administrator   change request to...
1
2
3
4
5
6
  <?php
  
  namespace controllers;
  
  ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
92ff9978   Administrator   change request to...
7
  class SeriesOfLettersController extends \Phalcon\Mvc\Controller
e22db2b7   Administrator   change request to...
8
9
10
11
12
13
14
  {
      public function initialize()
      {
          $this->view->setTemplateAfter('common');
      }
  
      public function indexAction(){
b4efc94e   Administrator   change request to...
15
          $data = \seriesOfLetters::find();
e22db2b7   Administrator   change request to...
16
17
  
          $this->view->setVars([
b4efc94e   Administrator   change request to...
18
              'data' => $data
e22db2b7   Administrator   change request to...
19
20
21
          ]);
      }
  }