summaryrefslogtreecommitdiffstats
path: root/admin/survey/classes/class.SurveyTimeProfiles.php
blob: 37628c7476318569ba6b6c18d2a4b40cc1c4759c (plain) (blame)
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
<?php
/**
 * Created on 13.01.2011
 *
 * @author: Gorazd Veselič
 */



define('STP_INTERVAL_1_DAY', '1 day');			# previdno pri spremembi tekstov, ker gre za PHP veljavne stringe za računanje z datumi
define('STP_INTERVAL_2_DAY', '2 day');
define('STP_INTERVAL_5_DAY', '5 day');
define('STP_INTERVAL_7_DAY', '7 day');
define('STP_INTERVAL_14_DAY', '14 day');
define('STP_INTERVAL_1_MONTH', '1 month');
define('STP_INTERVAL_3_MONTH', '3 month');
define('STP_INTERVAL_6_MONTH', '6 month');


define('STP_DEFAULT_PROFILE', 0);

class SurveyTimeProfiles {

	static private $surveyId = null;
	static private $uId = null;

	static private $currentProfileId = null;	# trenutno profil
	static private $profiles = array();			# seznam vseh profilov od uporabnika
	
	static private $start_date = null;			# začetek ankete
	static private $end_date = null;			# konec ankete

	static private $STP_ARRAYS = array(	STP_INTERVAL_1_DAY,
										STP_INTERVAL_2_DAY,
										STP_INTERVAL_5_DAY,
										STP_INTERVAL_7_DAY,
										STP_INTERVAL_14_DAY,
										STP_INTERVAL_1_MONTH,
										STP_INTERVAL_3_MONTH,
										STP_INTERVAL_6_MONTH); // array možnih intervalov za dropdown

	static function getSurveyId()				{ return self::$surveyId; }
	static function getGlobalUserId()			{ return self::$uId; }
	static function getCurentProfileId()		{ return (int)self::$currentProfileId; }
	
	/** Inizializacija, poišče id privzetega profila in prebere vse profiel ki jih ima uporabnik na voljo
	 * 
	 * @param $_surveyId
	 */
	static function Init($_surveyId)
	{

		global $global_user_id, $lang;
		 
		if ($_surveyId && $global_user_id)
		{
			self::$surveyId = $_surveyId;
			self::$uId = $global_user_id;
		
			# inicializiramo datoteko z nastavitvami
			SurveyUserSetting :: getInstance()->Init(self::$surveyId, self::$uId);			
			# preverimo ali ima uporabnik nastavljen privzet profil
			$dsp = SurveyUserSetting :: getInstance()->getSettings('default_time_profile');

			if ( $dsp == null ) {
				# nastavimo privzet profil v clas
				$dsp = 0;
			}
			
			#dodamo profil iz seje
			if ( (int)$dsp == -1 ) {
				if ( isset($_SESSION['time_profile'][self::$surveyId])) {
					#dodamo profil iz seje
					self::$profiles['-1'] = array('id'=>'-1',
					  	'name'=>$lang['srv_temp_profile'],
						'type'=>$_SESSION['time_profile'][self::$surveyId]['type'],
						'starts'=>(isset($_SESSION['time_profile'][self::$surveyId]['starts']) ? $_SESSION['time_profile'][self::$surveyId]['starts'] : null),
						'ends'=>(isset($_SESSION['time_profile'][self::$surveyId]['ends']) ? $_SESSION['time_profile'][self::$surveyId]['ends'] : null),
						'interval_txt'=>(isset($_SESSION['time_profile'][self::$surveyId]['interval_txt']) ? $_SESSION['time_profile'][self::$surveyId]['interval_txt'] : null));
					$dsp = -1;
					
				} else {
					// ni v seji, naredimo privzetega
					$dsp = 0;
				}
			}

			# če mamo spremembo shranimo
			self::SetDefaultProfileId((int)$dsp);
			
			#dodamo privzet profil
			# datum od, "ce ni podan vzamemo kreacijo ankete
			SurveyInfo :: getInstance()->SurveyInit(self::getSurveyId());

			self::$start_date = date(STP_DATE_FORMAT, strtotime(SurveyInfo::getInstance()->getSurveyInsertDate()));

			# datum do, "ce ni podan vzamemo danasnji dan
			self::$end_date = date(STP_DATE_FORMAT);// ce ne, 

			# dodamo sistemski profil
			self::$profiles['0'] = array(	'id'=>0,
											'type'=>0,
										  	'name'=>$lang['srv_default_profile'],
											'starts'=>self::$start_date,
											'ends'=>self::$end_date,
											'interval_txt'=>'');

			# poiščemo še seznam vseh ostalih profilov uporabnika
			$stringSelect = "SELECT  id, name, type, DATE_FORMAT(starts,'".STP_CALENDAR_DATE_FORMAT."') AS starts, DATE_FORMAT(ends,'".STP_CALENDAR_DATE_FORMAT."') AS ends, interval_txt FROM  srv_time_profile WHERE uid = '".self::getGlobalUserId()."' || uid = '0' ORDER BY id";
			$querySelect = sisplet_query($stringSelect);

			while ( $rowSelect = mysqli_fetch_assoc($querySelect) ) {
				self::$profiles[$rowSelect['id']] = array(	'id'=>$rowSelect['id'],
											  	'name'=>$rowSelect['name'],
											  	'type'=>$rowSelect['type'],
												'starts'=>$rowSelect['starts'],
												'ends'=>$rowSelect['ends'],
												'interval_txt'=>$rowSelect['interval_txt']);
			}
			
			# nastavimo id profil klassa na izbran
			self::$currentProfileId = (int)$dsp;
			
			return true;
		} else { 
			return false;
		}
	}
	
	static function getSystemDefaultProfile() {
		return (int)STP_DEFAULT_PROFILE;
	}
	
	/** Vrne podatke trenutno izbranega profofila
	 * 
	 */
	static function GetCurentProfileData() {
		return	self::$profiles[self::$currentProfileId]; 
	}

	/** Vrne podatke podanega profofila
	 * 
	 */
	static function GetProfileData($pid) {
		return	self::$profiles[$pid]; 
	}

	public function getProfileName($pid) {
		return self::$profiles[$pid]['name'];
	}
	
	/** Vrne array z start date in end date
	 * 
	 */		
	static function GetDates($forceDefaultFilter = false) {
		if ($forceDefaultFilter == false) {
			$_profile_data = self :: GetCurentProfileData();
			# ali imam o privzete datume filtra
			$is_default_dates = ((int)$_profile_data['id'] == 0 ? true : false);
		} else {
			# zaradi možnosti masovnega zbiranja vsilimo privzet datum
			$_profile_data = self::$profiles[0];
			# ali imam o privzete datume filtra
			$is_default_dates = true;
		}
		
		# nastavimo start date in end date
		if ($_profile_data['interval_txt'] != '') {
			# ce imamo nastavljen datum preko intervala
			$end_date = date(STP_OUTPUT_DATE_FORMAT);
			$start_date = date(STP_OUTPUT_DATE_FORMAT,strtotime(date(STP_OUTPUT_DATE_FORMAT, strtotime($end_date)) . ' - '.$_profile_data['interval_txt']));

		} else if ($_profile_data['starts'] != '' && $_profile_data['ends'] != '') {
			# imamo podana oba datuma
			$start_date = date(STP_OUTPUT_DATE_FORMAT,strtotime($_profile_data['starts']));
			$end_date = date(STP_OUTPUT_DATE_FORMAT,strtotime($_profile_data['ends']));
		} else {
			# napaka vzamemo datum kreacije ankete in današnji datum
			$start_date = date(STP_OUTPUT_DATE_FORMAT,strtotime(SurveyInfo::getInstance()->getSurveyInsertDate()));
			$end_date = date(STP_OUTPUT_DATE_FORMAT);;

		}
		# končni datum po potrebi zmanjšamo na današnji datum
		if (strtotime($end_date) > strtotime(date(STP_OUTPUT_DATE_FORMAT))) { 
			$end_date = date(STP_OUTPUT_DATE_FORMAT);
		}  
		return array('start_date'=>$start_date, 'end_date'=>$end_date, 'is_default_dates' => $is_default_dates);		
	}
	
	/** Pridobimo seznam vseh list uporabnika
	 *  v obliki arraya
	 */
	static function getProfiles() {
		return self::$profiles;
	}
	
	/* Vrne ID in ime trenutno izbranega profila
	*
	*/
	function getCurentProfile() {
		return array('id'=>self::$currentProfileId,'name'=>self::$profiles[self::$currentProfileId]['name']);
	}

	/** Ponastavi id privzetega profila
	 * 
	 */
	static function SetDefaultProfile($pid) {
		self::SetDefaultProfileId($pid);
	}
	
	static function SetDefaultProfileId($pid) {
	
		self::$currentProfileId = (int)$pid;
		
		$saved = SurveyUserSetting :: getInstance()->saveSettings('default_time_profile',(int)$pid);
	}
	
	static function ChooseProfile($pid) {
		# če smo izbrali drug profil resetiramo še profil profilov na trenutne nastavitve
		SurveyUserSetting :: getInstance()->saveSettings('default_profileManager_pid', '0');
	
		self::SetDefaultProfileId((int)$pid);
		self::$currentProfileId = (int)$pid;
		
	}
	
	/** 
	 * 
	 */
	static function SaveProfile($pid,$type,$startDate,$endDate,$stat_interval) {
		global $lang;
		if ((int)$pid == 0 ) {
			# imamo privzet profil
			self :: ChooseProfile((int)$pid);
			$updated = true;
		} else if ((int)$pid > 0) {
			# shranimo v bazo
			if ((int)$type == 0) { # $type = '0';
				# shranjujemo od - do
				$stat_interval = '';
				$_startDate = date(STP_OUTPUT_DATE_FORMAT, strtotime($startDate));
				$_endDate = date(STP_OUTPUT_DATE_FORMAT, strtotime($endDate));
				
				$update = "UPDATE srv_time_profile SET starts = '".$_startDate."', ends='".$_endDate."', type='".$type."', interval_txt = '' WHERE id = '".$pid."'";
			} else { # $type = '1';
				# shranjujemo interval
				$startDate = '';
				$endDate = '';
				$type = '1';
				$update = "UPDATE srv_time_profile SET starts = '0000-00-00 00:00:00', ends='0000-00-00 00:00:00', type='".$type."', interval_txt = '".$stat_interval."' WHERE id = '".$pid."'";
			}
			
			$updated = sisplet_query($update);
			# ce je bili updejt ok  posodobimo se vrednost v profilu
			if ($updated) {
				self::$profiles[$pid]['type'] = $type;
				self::$profiles[$pid]['starts'] = $startDate;
				self::$profiles[$pid]['ends'] = $endDate;
				self::$profiles[$pid]['interval_txt'] = $stat_interval;
			}
			
			# nastavimo privzet profil na trenutnega
			self :: ChooseProfile((int)$pid);
			
		} else {
			# shranjujenmo v sejo
			$_SESSION['time_profile'][self::$surveyId] = array('id'=>'-1',
				  	'name'=>$lang['srv_temp_profile']);
			
			if ((int)$type == 0) { # $type = '0';
				# shranjujemo od - do
				$_SESSION['time_profile'][self::$surveyId]['type'] = '0';
				$_SESSION['time_profile'][self::$surveyId]['starts'] = date(STP_OUTPUT_DATE_FORMAT, strtotime($startDate));
				$_SESSION['time_profile'][self::$surveyId]['ends'] = date(STP_OUTPUT_DATE_FORMAT, strtotime($endDate));
				unset($_SESSION['time_profile'][self::$surveyId]['interval_txt']);
			} else {
				$_SESSION['time_profile'][self::$surveyId]['type'] = '1';
				$_SESSION['time_profile'][self::$surveyId]['interval_txt'] = $stat_interval;
				unset($_SESSION['time_profile'][self::$surveyId]['starts']);
				unset($_SESSION['time_profile'][self::$surveyId]['ends']);
			} 
			self::$profiles[$pid] = $_SESSION['time_profile'][self::$surveyId]; 
			
			$updated = true;
			self :: ChooseProfile((int)$pid);
				
		}
		return $updated;
	}

	static function RenameProfile($pid, $name) {

		if (isset($pid) && $pid > 0 && isset($name) && trim($name) != "") {
			// popravimo podatek za variables 
			$stringUpdate = "UPDATE srv_time_profile SET name = '".$name."' WHERE id = '".$pid."'";
			$updated = sisplet_query($stringUpdate);
			return $updated;
		} else {
			return -1;
		}
	}
	 	
	static function DeleteProfile($pid = 0) {

		if (isset($pid) && $pid == -1) {
			unset($_SESSION['time_profile'][self::$surveyId] );
		} else  if (isset($pid) && $pid > 0) {
			// Izbrišemo profil in nastavimo privzetega 
			$stringUpdate = "DELETE FROM srv_time_profile WHERE id = '".$pid."'";
			$updated = sisplet_query($stringUpdate);
		}
		# nastavimo privzet profil
		self::ChooseProfile('0');
	}

	/** Funkcija kreira nov profil
	 *  
	 */
	function createProfile($type,$startDate,$endDate,$stat_interval,$name=null) {
		global $lang;
		if ($name == null || trim($name) == '' ) {
			$name = $lang['srv_new_profile'];
		}

		if ($type == '0') {
			# shranjujemo od - do
			$startDate = date(STP_OUTPUT_DATE_FORMAT, strtotime($startDate));
			$endDate = date(STP_OUTPUT_DATE_FORMAT, strtotime($endDate));
			$stat_interval = '';
		} else {
			# shranjujemo interval
			$startDate = '0000-00-00';
			$endDate = '0000-00-00';
			$type = '1';
		}

		$iStr = "INSERT INTO srv_time_profile (id,uid,name,type,starts,ends,interval_txt)".
		" VALUES (NULL, '".self::$uId."', '".$name."', '".$type."', '".$startDate."', '".$endDate."', '".$stat_interval."')";
		
		$ins = sisplet_query($iStr);
		$id = mysqli_insert_id($GLOBALS['connect_db']);
		
		if ($id > 0) {
			self :: ChooseProfile($id);
		} else {
			self :: ChooseProfile(0);
		}

		return;
	}
	
	/** prikažemo dropdown z izbranim profilom in link do nastavitev profila
	 * 
	 * 
	 */
	static function DisplayLink($hideAdvanced = true, $showseperator = true) {
		global $lang;

        $profiles = self :: getProfiles();
        $izbranProfil = self :: getCurentProfileId();
        
        $css = ($izbranProfil == STP_DEFAULT_PROFILE ? ' gray' : '');
        if ($hideAdvanced == false || $izbranProfil != STP_DEFAULT_PROFILE) {
        	echo '<li>';
        	echo '  <span class="'.$css.'" id="link_time_profile" title="' . $lang['srv_time_profile_link_title'] . '" onClick="timeProfileAction(\'showProfiles\');">' . $lang['srv_time_profile_link'] . '</span>';
        	echo '</li>';
        }
	}
	
	
	/** Funkcija prikaze izbor datuma
	 *  
	 */
	static function displayProfiles($current_pid = null) {
		global $lang;
        $_all_profiles = self::getProfiles();

		// Naslov
        echo '<h2>'.$lang['srv_obdobje_settings'].'</h2>';
        
        echo '<div class="popup_close"><a href="#" onClick="timeProfileAction(\'cancel\'); return false;">✕</a></div>';
		
        if ($current_pid == null) {
        	$current_pid = self::getCurentProfileId();
        }
        $currentFilterProfile = $_all_profiles[$current_pid];

        if ( $current_pid != STP_DEFAULT_PROFILE ) {
	       	echo '<div id="not_default_setting" class="popup_note">';
	        echo $lang['srv_not_default_setting'];
	        echo '</div>';
        }
        

        echo '<div class="popup_main with_menu">';


		echo '<div class="time_profile_holder popup_left">';

		# zlistamo vse profile
       	echo '<div id="time_profile" class="list select">';
		
		if (count($_all_profiles)) {
			foreach ($_all_profiles as $id=>$profile) {
				
				echo '<div class="list-item option' . ($current_pid == $id ? ' active' : '') . '" id="time_profile_' . $id . '" value="'.$id.'">';

				echo $profile['name'];
				
				if($current_pid == $id){
                    echo '<div class="profile_icons">';

					# privzetega profila ne moremo ne zbrisat ne preimenovat
					if ($current_pid != 0) {
						echo '<a href="#" title="'.$lang['srv_delete_profile'].'" onclick="timeProfileAction(\'show_delete\'); return false;"><span class="faicon delete_circle icon-orange_link floatRight" style="margin-top:1px;"></span></a>';
					}
					if ($current_pid > 0) {
						echo '<a href="#" title="'.$lang['srv_rename_profile'].'" onclick="timeProfileAction(\'show_rename\'); return false;"><span class="faicon edit floatRight spaceRight"></span></a>';
					}
                    echo '</div>';	
				}
				
				echo '</div>';	
			}
		}

		echo '</div>';

        echo '<button class="small white-black" title="'.$lang['srv_create_new_profile'].'" onclick="timeProfileAction(\'show_create\'); return false;"><span class="faicon plus_32"></span>'.$lang['srv_create_new_profile'] . '</button>';

		echo '</div>';

		
		echo '<div id="time_profile_content" class="profile_right">';
		self::DisplayProfileData($current_pid);
		echo '</div>'; // time_profile_content


		echo '</div>';
		
		
		echo '<div class="button_holder">';
		if ($current_pid == 0) {
			echo '<button class="medium white-black" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
			echo '<button class="medium blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
		} 
        else if ($current_pid == -1) {
			echo '<button class="medium white-black" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
			echo '<button class="medium blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
		} 
        else  {
			echo '<button class="medium white-black" title="'.$lang['srv_close_profile'].'" onclick="timeProfileAction(\'cancel\'); return false;">'.$lang['srv_close_profile'] . '</button>';
			echo '<button class="medium white-blue" title="'.$lang['srv_run_as_session_profile'].'" onclick="timeProfileAction(\'run_session_profile\'); return false;">'.$lang['srv_run_as_session_profile'] . '</button>';
			echo '<button class="medium blue" title="'.$lang['srv_save_run_profile'].'" onclick="timeProfileAction(\'run_profile\'); return false;">'.$lang['srv_run_profile'] . '</button>';
			
		}
		echo '</div>';
		
		
		// cover Div
        echo '<div id="timeProfileCoverDiv"></div>';
		
        // div za kreacijo novega
        echo '<div id="newProfileDiv">';

		echo '<div class="setting_holder">';

		echo '<div class="setting_item">';
		echo '<label>'.$lang['srv_missing_profile_name'].':</label>';
        echo '<input id="newProfileName" name="newProfileName" type="text" class="text large" value=""/>';
		echo '</div>';
		echo '</div>';

		echo '<div class="button_holder">';
        echo '<button class="medium white-black" onClick="timeProfileAction(\'cancel_create\'); return false;">'.$lang['srv_close_profile'].'</button>';             
        echo '<button class="medium blue" onclick="timeProfileAction(\'do_create\'); return false;">'.$lang['srv_analiza_arhiviraj_save'].'</button>';
        echo '</div>';

        echo '</div>';
        
        // div za preimenovanje
        echo '<div id="renameProfileDiv">';

		echo '<div class="setting_holder">';

		echo '<div class="setting_item">';
		echo '<label>'.$lang['srv_missing_profile_name'].':</label>';
        echo '<input id="renameProfileName" class="text large" name="renameProfileName" type="text" value="' . $currentFilterProfile['name'] . '" size="50"  />';
        echo '<input id="renameProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '"  />';
		echo '</div>';
		echo '</div>';

		echo '<div class="button_holder">';
        echo '<button class="medium white-black" onClick="timeProfileAction(\'cancel_rename\'); return false;">'.$lang['srv_close_profile'].'</button>';             
        echo '<button class="medium blue" onclick="timeProfileAction(\'do_rename\'); return false;">'.$lang['srv_rename_profile_yes'].'</button>';
        echo '</div>';

        echo '</div>';

        // div za brisanje
        echo '<div id="deleteProfileDiv">';
		echo $lang['srv_missing_profile_delete_confirm'].': <span class="semi-bold">' . $currentFilterProfile['name'] . '</span>?';
        echo '<input id="deleteProfileId" type="hidden" value="' . $currentFilterProfile['id'] . '"  />';

		echo '<div class="button_holder">';
        echo '<button class="medium white-black" onClick="timeProfileAction(\'cancel_delete\'); return false;">'.$lang['srv_close_profile'].'</button>';             
        echo '<button class="medium blue" onclick="timeProfileAction(\'do_delete\'); return false;">'.$lang['srv_delete_profile_yes'].'</button>';
        echo '</div>';

    }
    
	/** Funkcija prikaze osnovnih informacije profila
	 * 
	 */
	static function DisplayProfileData($current_pid) {
		global $lang;
		# podatki profila
		$p_data = self::GetProfileData($current_pid);

		#kateri nacin imamo ali type (od - do) ali inervalsko (zadnjih....)
		# ce je podan string interval imamo intervalno
		$type = $p_data['type'];
		if ( $type == '0') {
			$time = '';
		} else {
			$p_data['starts'] = date(STP_DATE_FORMAT,strtotime(SurveyInfo::getInstance()->getSurveyInsertDate()));
			$p_data['ends'] = date(STP_DATE_FORMAT);
			$time = $p_data['interval_txt'];
		}

		echo '<div class="setting_holder">';
		echo '<p class="setting_title">' . $lang['srv_time_profile_time'] . '</p>';

		echo '<div class="setting_item">';
		echo '  <input type="radio" name="type" id="time_date_type" value="0" '.($type == '0' ? ' checked="checked"' : '').' autocomplete="off"><label for="time_date_type">' . $lang['srv_time_profile_from'] . ':</label>';
		echo '  <input id="startDate" type="text" class="text medium" name="startDate" value="' . $p_data['starts'] . '" onclick="changeTimeProfileType();" readonly="true" '.' autocomplete="off"/>&nbsp;';
		echo '  <span class="faicon calendar_icon pointer blue" id="starts_img"></span>';
		echo '  <label>' . $lang['srv_time_profile_to'] . ':</label>';
		echo '  <input id="endDate" type="text" class="text medium" name="endDate" value="' . $p_data['ends'] . '" onclick="changeTimeProfileType();" readonly="true" '.'cautocomplete="off"/>&nbsp;';
		echo '  <span class="faicon calendar_icon pointer blue" id="expire_img"></span>' . "\n" ;
		echo '</div>';
	
		echo '<div class="setting_item">';
		echo '  <input type="radio" name="type" id="time_date_interval" value="1" '.($type == '0' ? '' : ' checked="checked"').' autocomplete="off"><label for="time_date_interval">'.$lang['srv_statistic_period_label'].':</label>';
		echo '  <select class="dropdown medium" name="stat_interval" id="stat_interval" onclick="changeTimeProfileType(\'interval\');" '.'autocomplete="off">';
		echo '      <option value="" selected="true">'.$lang['srv_time_profile_choose_interval'].'</option>';
		foreach (self::$STP_ARRAYS as $INTERVAL) {
			echo '      <option value="'.$INTERVAL.'"' . ($time == $INTERVAL ? ' selected' : '') . '>'.$lang['srv_diagnostics_'.$INTERVAL].'</option>';
		}
			echo '  </select>';
		echo '</div>';
					
		echo '</div>';

		echo '<script type="text/javascript">';
		# za profil id=0 (privzet profil ne pustimo spreminjat
			echo 
			'    Calendar.setup({' . "\n" .
			'        inputField  : "startDate",' . "\n" .
			'        ifFormat    : "'.STP_CALENDAR_DATE_FORMAT.'",' . "\n" .
			'        button      : "starts_img",' . "\n" .
			'        singleClick : true,' . "\n" .
			'        onUpdate    : changeTimeProfileType' . "\n" .
			'    });' . "\n" .
			'    Calendar.setup({' . "\n" .
			'        inputField  : "endDate",' . "\n" .
			'        ifFormat    : "'.STP_CALENDAR_DATE_FORMAT.'",' . "\n" .
			'        button      : "expire_img",' . "\n" .
			'        singleClick : true,' . "\n" .
			'        onUpdate    : changeTimeProfileType' . "\n" .
			'    })';

		echo '</script>';

	}
	
	public static function ajax() {
		$pid = isset($_POST['pid']) ? $_POST['pid'] : null;
		switch ($_GET['a']) {
			case 'showProfile':
				self::displayProfiles($pid);
				break;
			case 'createProfile':
				self::createNewProfile();
				break;
			case 'changeProfile':
				self::ChooseProfile($pid);
				break;
			case 'renameProfile':
				self::RenameProfile($pid, $_POST['name']);
				break;
			case 'deleteProfile':
				self::DeleteProfile($pid);
				break;
			case 'saveProfile':
				self::SaveProfile($pid,$_POST['type'],$_POST['startDate'],$_POST['endDate'],$_POST['stat_interval']);
				break;
			default:
				print_r("<pre>");
				print_r($_POST);
				print_r($_GET);
			break;				
		}
	} 
	
	/** Kreira nov profil z datumom od začetka ankete do danes
	 * 
	 */
	public static function createNewProfile() {
		global $lang;
		
		if ($_POST['profileName'] == null || trim($_POST['profileName']) == '' ) {
			$_POST['profileName'] = $lang['srv_new_profile'];
		}

		$type = '0';;
		$stat_interval = '';
			 
		$startdate = date(STP_OUTPUT_DATE_FORMAT, strtotime(self::$start_date)); 
		$enddate = date(STP_OUTPUT_DATE_FORMAT, strtotime(self::$end_date)); 
			
		$iStr = "INSERT INTO srv_time_profile (id,uid,name,type,starts,ends,interval_txt)".
		" VALUES (NULL, '".self::getGlobalUserId()."', '".$_POST['profileName']."', '".$type."', '".$startdate."', '".$enddate."', '".$stat_interval."')";
		
		$ins = sisplet_query($iStr);
		$id = mysqli_insert_id($GLOBALS['connect_db']);
		
		if ($id > 0) {
			self::ChooseProfile($id);
		} else {
			$id = 0;
			self::ChooseProfile($id);
		}
		
		return $id;
	}
	
	/** Vrne filter v obliki stringa primernega za uporabo filtriranja z AWK  
	 * 
	 */
	public static function getFilterForAWK ($sequenca = null) {
		# če manjka sekvenca mamo napako in ne delamo filtra
		if ($sequenca == null || $sequenca == '') {
			return '';
		}
		
		$_profile = self::GetCurentProfileData();
		#za privzet porfil id = 0 ne delamo časovnih omejitev
		if ($_profile['id'] == '0') {
			return '';
		} else {
			# odvisno od tipa profila pripravimo omejitve datuma
			$set=false;
			
			if ($_profile['type'] == '0') {
				$result = '(';
				$prefix = '';
				# imamo range od - do
				# spremenimo oba datuma v unixtime
				
				$startUnixDate = date("U", strtotime($_profile['starts']));
				$endUnixDate = date("U", strtotime($_profile['ends']));

				if ((int)$startUnixDate > 0 ) {
					$result .= '$'.$sequenca. ' > ' . $startUnixDate;
					$prefix = ' && ';
					$set=true;
				}
				if ((int)$endUnixDate > 0 ) {
					# + 86 400 seconds = one day
					$result .= $prefix. '$'.$sequenca. ' < ' . ($endUnixDate+ 86400) ;
					$set=true;
				}
				$result .= ')';
			
			} else {
				#imamo interval zadnjih XXX dni
				
				$date = date("Y-m-d");// current date
				$unix_date = strtotime(date("Y-m-d", strtotime($date)) . " -".$_profile['interval_txt']);
 				
				if ((int)$unix_date > 0 && $_profile['interval_txt'] != null && $_profile['interval_txt'] =! '') {
					$result =  '($'.$sequenca. ' > ' . $unix_date.')';
					$set=true;
				}
			}
			if ($set == true) {
				return $result;
			}
		}
		
		
	} 
	
	/** Izpišemo opozorilo če ni privzet profil
	 * 
	 */
	static function printIsDefaultProfile() {
		global $lang;

		if (self::$currentProfileId != 0) {

			$cp_data = self::GetCurentProfileData(); 

			echo '<div id="timeProfileDafaultNote" class="filter_box">';
			
            echo '  <div class="header">';

			# odvisno od tipa profila izpišemo ali obdobje ali interval
			if ($cp_data['type'] == 0) {
				# obdobje: od - do
				echo '<span class="semi-bold">'.$lang['obdobje_od'].':</span>&nbsp;'.date(STP_DATE_FORMAT, strtotime($cp_data['starts']));
				echo '&nbsp;<span class="semi-bold">'.$lang['obdobje_do'].':</span>&nbsp;'.date(STP_DATE_FORMAT, strtotime($cp_data['ends']));
			} 
            else {
				# interval: zadnjih x dni
				echo '<span class="semi-bold">'.$lang['srv_time_profile_filter_period'].':</span>&nbsp;'.($lang['srv_diagnostics_'.$cp_data['interval_txt']]);
			}
			
			echo '      <div class="icons">';
			echo '          <span class="faicon edit" id="link_time_profile_edit" title="'.$lang['srv_profile_edit'].'"></span>';
			echo '          <span class="faicon delete" id="link_time_profile_remove" title="'.$lang['srv_profile_remove'].'"></span>';			
			echo '      </div>';

			echo '</div>';

			echo '</div>';

			return true;
		} 
        else {
			return false;
		}
	}
	
	/** preveri obstoj profila in vrne enak id če obstaja, če ne vrne id privzetega profila
	 *
	 * @param unknown_type $pid
	 * @return unknown
	 */
	function checkProfileExist($pid)
	{
		if (isset(self::$profiles[$pid]))
		{
			return true;
		}
		return false;
	}
}
?>