SeriesOfLettersController.php
1.49 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
namespace controllers;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class SeriesOfLettersController extends \Phalcon\Mvc\Controller
{
public function initialize()
{
$this->view->setTemplateAfter('common');
}
public function indexAction(){
$data = \seriesOfLetters::find();
$this->view->setVars([
'data' => $data
]);
}
public function addAction(){
$this->view->pick( 'series_of_letters/addEdit' );
$this->view->setVars([
]);
}
public function deleteAction($id){
$data = \seriesOfLetters::find();
$this->view->setVars([
'data' => $data
]);
}
public function updateAction($id){
$data = \seriesOfLetters::findFirst("id=$id");
$this->view->pick( 'series_of_letters/addEdit' );
$this->view->setVars([
'data' => $data
]);
}
public function getTemplateAction()
{ die('here');
$this->view->setTemplateAfter('none');
$like = $this->request->getPost('like', 'string', NULL );
$users = \customersEmailList::find(array(
"email LIKE '%$like%' AND project_id = {$this->session->get('project-id')}"
));
$result = json_encode($users->toArray());
$this->view->disableLevel(\Phalcon\Mvc\View::LEVEL_MAIN_LAYOUT);
echo $result;
}
}