-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNews.php
More file actions
executable file
·49 lines (27 loc) · 1.01 KB
/
News.php
File metadata and controls
executable file
·49 lines (27 loc) · 1.01 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
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_News extends Controller_Main{
public function before(){
parent::before();
$this->default = Database::instance();
}
public function action_view()
{
$this->page_title = 'INDEX';
$id=intval($this->request->param('id'));
$result=DB::select()->from('download')->where('id','=',$id)->execute($this->default)->as_array();
$view=View::factory('pc/news/view');
$view->ncontent=$result[0]['softsay'];
$this->template->content =$view;
}
public function action_index()
{
$this->page_title = 'Home';
$query = DB::select()
->from('download')
->where('star', '=','2')
->execute($this->default);
$result=$query->as_array();
$this->template->content = View::factory("pc/news/default")->bind('newsList',$result);
// echo 'hello world';
}
}