class.mailTmpl.php
4.92 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<?php
/**
* @author: Bunzia Alexander <nifus@mail.ru> <http://www.weblancer.net/users/nifus/>
* @copyright: Copyright (c) 2010, Bunzia Alexander
* @version: 1.0
* @license: http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @package: HiLo CMS
*/
include_once(MAIN_SOURCE_PATH.'/inc/class.query.php');
include_once(MAIN_SOURCE_PATH.'/inc/class.objects.php');
class filedsSetMailTmpl
{
//static $id = false; // адрес
static function m_name($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_NAME_EMPTY );
}
return $v;
}
public function set_subject($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_SUBJECT_EMPTY );
}
return $v;
}
public function set_body($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_BODY_EMPTY );
}
return $v;
}
public function set_from_name($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_FROMNAME_EMPTY );
}
return $v;
}
public function set_content_type($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_CONTENT_TYPE_EMPTY );
}
if ( !in_array($v,mailTmpl::$formats) ){
throw new Exception( M_ADMIN_M_CONTENT_TYPE_FALSE );
}
return $v;
}
public function set_key($v){
if ( empty($v) ){
throw new Exception( M_ADMIN_M_KEY_EMPTY );
}
if ( !mailTmpl::check_type($v) ){
throw new Exception( M_ADMIN_M_KEY_FALSE );
}
return $v;
}
/*
static function p_type_content($v){
if ( empty($v) ){
return true;
}
$values = array('HTML','PHP','TMPL');
if ( !in_array($v,$values) ){
throw new Exception( M_ADMIN_BLOCKS_FALSE_TYPE_CONTENT );
}
return $v;
}
*/
}
class filedsGetMailTmpl
{
static $__var = array(); // для хранения временных переменных
static function type_list($v){
// список форматов
$types = mailTmpl::$formats;
$s = new select_box();
$s -> selected_id($v);
$s -> empty_record(false);
foreach( $types as $t ){
$s -> set($t,$t);
}
return $s -> get();
}
static function from($v,$row){
return (!empty($row['m_from_email']) ? ($v.'('.$row['m_from_email'].')') : $v);
}
static function lang_links($v){
if ( false===MAIN_MULTILANG ){
return false;
}
$langs = explode(',',MAIN_LANGS);
$result = array();
foreach( $langs as $l ){
$q = new mailTmplQuery('q');
$q -> where_link($v);
$q -> where_lang($l);
$q -> get('COUNT(*)');
list($count) = $q -> row();
$result[] = array('lang'=>$l,'exists'=> (( $count ) ? 1 : 0) );
}
return $result;
}
static function lang_list($v){
if ( false===MAIN_MULTILANG ){
return false;
}
$langs = explode(',',MAIN_LANGS);
$s = new select_box();
$s -> selected_id($v);
$s -> empty_record(false);
foreach( $langs as $lng )
{
$s -> set($lng,$lng);
}
return $s -> get();
}
}
class mailTmplQuery extends query{
var $fields_get = 'filedsGetMailTmpl';
public function __construct($alias){
$this -> set_table( MAIN_MAIL_TMPL_TBL );
$this -> set_alias($alias);
}
/*public function include_tmpl($alias,$cols=''){
$this -> include_table(MAIN_TMPL_TBL,$alias,'t_id',$cols );
return true;
}*/
public function where_id($v){
$v = intval($v);
if ( empty($v) ){
return false;
}
return $this -> set_where( $this -> alias.'.m_id',$v);
}
public function where_link($v){
if ( false===MAIN_MULTILANG ){
return $this -> where_id($v);
}
$v = intval($v);
if ( empty($v) ){
return false;
}
return $this -> set_where( $this -> alias.'.link_id',$v);
}
public function where_main_rows(){
if ( false===MAIN_MULTILANG ){
return false;
}
return $this -> set_anothe_where( $this -> alias.'.m_id='.$this -> alias.'.link_id');
}
public function where_lang($v){
if ( false===MAIN_MULTILANG ){
return false;
}
$langs = explode(',',MAIN_LANGS);
if ( !in_array($v,$langs) ){
return false;
}
return $this -> set_where( $this -> alias.'.lang',$v);
}
public function orderby_id($v){
return $this -> set_orderby( $this -> alias.'.m_id',$v);
}
}
// класс для управления записями таблицы system_staticPages
class mailTmpl extends objects{
public $table = "system_mail_tmpl";
public $key = "m_id";
public $fields = 'filedsSetMailTmpl';
static $formats = array('text','html');
public function id(){
return $this -> info['m_id'];
}
// загрузка модуля по его id
static function load_id($id){
$m = new mailTmplQuery('m');
if ( !$m -> where_id($id) ){
return false;
}
$m -> get('*');
if ( $m -> get_count_rows()==0 ){
return FALSE;
}
return new mailTmpl($id,$m -> row());
}
static function create(){
return new mailTmpl( 0, array('m_id'=>0));
}
static function check_type($v){
if ( preg_match('#[^a-z0-9_]#i',$v) ){
return false;
}
return true;
}
}
?>