Blame view

src/app/frontend/controllers/SeriesOfLettersController.php 624 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
15
16
17
18
19
20
21
22
23
24
  {
      public function initialize()
      {
          $this->view->setTemplateAfter('common');
      }
  
      public function indexAction(){
          $data = \eventEmail::query()
              ->where("email_type = 'standard'")
              ->andWhere("project_id = {$this->session->get('project-id')}")
              ->execute();
  
          $this->view->setVars([
  
          ]);
      }
  }