aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Settings/Featured.php
blob: 1d903fcf7ff5022ef963e9a6f269eca67b129330 (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
<?php

namespace Zotlabs\Module\Settings;


class Featured {
		
	function post() {
		check_form_security_token_redirectOnErr('/settings/featured', 'settings_featured');
	
		call_hooks('feature_settings_post', $_POST);
	
		if($_POST['affinity_slider-submit']) {
			$cmax = intval($_POST['affinity_cmax']);
			if($cmax < 0 || $cmax > 99)
				$cmax = 99;
			$cmin = intval($_POST['affinity_cmin']);
			if($cmin < 0 || $cmin > 99)
				$cmin = 0;

			$lock = ($_POST['affinity_lock']) ? intval($_POST['affinity_lock']) : 1;

			set_pconfig(local_channel(),'affinity','cmin',$cmin);
			set_pconfig(local_channel(),'affinity','cmax',$cmax);
			set_pconfig(local_channel(),'affinity','lock',$lock);

			info( t('Affinity Slider settings updated.') . EOL);

		}
		
		build_sync_packet();
		return;
	}

	function get() {
		$settings_addons = "";
	
		$o = '';
			
		$r = q("SELECT * FROM hook WHERE hook = 'feature_settings' ");
		if(! $r)
			$settings_addons = t('No feature settings configured');
	
		if(feature_enabled(local_channel(),'affinity')) {
			
			$cmax = intval(get_pconfig(local_channel(),'affinity','cmax'));
			$cmax = (($cmax) ? $cmax : 99);
			$setting_fields .= replace_macros(get_markup_template('field_input.tpl'), array(
				'$field'    => array('affinity_cmax', t('Default maximum affinity level'), $cmax, t('0-99 default 99'))
			));
			$cmin = intval(get_pconfig(local_channel(),'affinity','cmin'));
			$cmin = (($cmin) ? $cmin : 0);
			$setting_fields .= replace_macros(get_markup_template('field_input.tpl'), array(
				'$field'    => array('affinity_cmin', t('Default minimum affinity level'), $cmin, t('0-99 - default 0'))
			));
			$lock = intval(get_pconfig(local_channel(),'affinity','lock',1));
			$setting_fields .= replace_macros(get_markup_template('field_checkbox.tpl'), array(
				'$field'    => array('affinity_lock', t('Always reset on new page visit.'), $lock, t('default: yes'), Array('No','Yes'))
			));

			$settings_addons .= replace_macros(get_markup_template('generic_addon_settings.tpl'), array(
				'$addon'    => array('affinity_slider', '' . t('Affinity Slider Settings'), '', t('Submit')),
				'$content'  => $setting_fields
			));
		}

		call_hooks('feature_settings', $settings_addons);
		
		$this->sortpanels($settings_addons);

			
		$tpl = get_markup_template("settings_addons.tpl");
		$o .= replace_macros($tpl, array(
			'$form_security_token' => get_form_security_token("settings_featured"),
			'$title'	=> t('Addon Settings'),
			'$descrip'  => t('Please save/submit changes to any panel before opening another.'),
			'$settings_addons' => $settings_addons
		));
		return $o;
	}

	function sortpanels(&$s) {
		$a = explode('<div class="panel">',$s);
		if($a) {
			usort($a,'featured_sort');
			$s = implode('<div class="panel">',$a);
		}
	}

}