-
Notifications
You must be signed in to change notification settings - Fork 1
/
home_options.php
314 lines (279 loc) · 8.25 KB
/
home_options.php
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
<?php
/**
* Fichier options
*
* @plugin Home
* @copyright 2014
* @author Cedric
* @licence GNU/GPL
* @package SPIP\Home\options
*/
if (!defined("_ECRIRE_INC_VERSION")) return;
if (_request('var_mode')=='home'){
define('_VAR_MODE','calcul');
define('_VAR_NOCACHE',true);
}
/**
* Tester si la home est editable pour afficher les boutons
* @param bool $item
* test si pour les boutons d'un item (true) ou le bouton toggle edition general (false)
* @return bool
*/
function home_editable($item=false){
static $editable=null;
if ($item AND _request('var_mode')!=='home')
return false;
if (is_null($editable)){
$editable = false;
if (isset($GLOBALS['visiteur_session']['statut'])
AND $GLOBALS['visiteur_session']['statut']=='0minirezo'
AND include_spip('inc/autoriser')
AND autoriser('administrer', 'home')) {
$editable = true;
}
}
return $editable;
}
/**
* La balise renvoie le nombre d'items affiches dans la home
* @param $p
* @return mixed
*/
function balise_HOME_NB_ITEMS_dist($p) {
$p->code = "home_nb_items()";
$p->interdire_scripts = false;
return $p;
}
/**
* Afficher les boutons d'admin generaux de la home
* @param $p
* @return mixed
*/
function balise_BOUTONS_ADMIN_HOME_dist($p) {
$p->code = "'<style>'.spip_file_get_contents(find_in_path('css/home-grids.css')).'</style>'";
// les boutons d'admin en supplement
$p->code .= "
. '<'.'?php
if (function_exists(\'home_editable\') AND home_editable()) {
echo \"<div class=\'boutons spip-admin actions administrerhome\'>\" . home_boutons_admin() . \"</div>\";
}
?'.'>'";
$p->interdire_scripts = false;
return $p;
}
/**
* Afficher les boutons d'admin d'un item de la home
*
* @param $p
* @return mixed
*/
function balise_BOUTONS_ADMIN_HOME_ITEM_dist($p) {
$compteur_boucle = charger_fonction("COMPTEUR_BOUCLE","balise");
$p = $compteur_boucle($p);
$_compteur = $p->code;
// les boutons d'admin de l'item en supplement
$p->code = "
'<'.'?php
if (function_exists(\'home_editable\') AND home_editable(true)) {
echo home_boutons_admin_item('.$_compteur.');
}
?'.'>'";
$p->interdire_scripts = false;
return $p;
}
/**
* Afficher les boutons d'admin de la home
*
* @return string
*/
function home_boutons_admin(){
$edit = (_request('var_mode')=='home'?true:false);
if ($edit){
include_spip('inc/autoriser');
$edit = autoriser('administrer','home');
}
$bouton_action = charger_filtre("bouton_action");
$boutons = "";
if ($edit){
$redirect = parametre_url(self(),'var_mode','home');
$boutons .= $bouton_action(
_T('home:bouton_home_reinit'),
generer_action_auteur('instituer_home',"raz//",$redirect),'btn-mini pull-left btn-danger',_T('home:label_confirm_reinit'));
$boutons .= $bouton_action(
_T('home:bouton_home_rowadd'),
generer_action_auteur('instituer_home',"rowadd//",$redirect),'btn-small','',_T('home:bouton_home_rowadd_title'));
$boutons .= $bouton_action(
_T('home:bouton_home_rowdel'),
generer_action_auteur('instituer_home',"rowdel//",$redirect),'btn-small','',_T('home:bouton_home_rowdel_title'));
}
$boutons .= $bouton_action(
$edit?_T('home:bouton_home_fin_editer'):_T('home:bouton_home_editer'),
$edit?self():parametre_url(self(),'var_mode','home'),'btn-small ');
return $boutons;
}
/**
* Afficher les boutons d'admin d'un item de la home
*
* @param int $no
* numero de l'article, compte a partir de 1 (#COMPTEUR_BOUCLE)
* @return string
*/
function home_boutons_admin_item($no){
$edit = (_request('var_mode')=='home'?true:false);
if ($edit){
include_spip('inc/autoriser');
$edit = autoriser('administrer','home');
}
if (!$edit) return "";
$items = home_items();
if (!isset($items[$no-1]))
return "";
$item = $items[$no-1];
$no_ligne = $item['row'];
$no_slot = $item['slot'];
$bouton_action = charger_filtre("bouton_action");
$boutons = "";
$redirect = ancre_url(parametre_url(self(),'var_mode','home'),"bahi-$no");
if ($no_slot==0){
$boutons .= $bouton_action(
_T('home:bouton_home_slotdel'),
generer_action_auteur('instituer_home', "slotdel/$no_ligne/", $redirect), 'btn-small', '', _T('home:bouton_home_slotdel_title'));
$boutons .= $bouton_action(
_T('home:bouton_home_slotadd'),
generer_action_auteur('instituer_home', "slotadd/$no_ligne/", $redirect), 'btn-small', '', _T('home:bouton_home_slotadd_title'));
}
if ($item['width']>1 OR $item['of']==2){
$boutons .= $bouton_action(
_T('home:bouton_home_slotshrink'),
generer_action_auteur('instituer_home',"slotshrink/$no_ligne/$no_slot",$redirect),'btn-small','',_T('home:bouton_home_slotshrink_title'));
}
// pas de enlarge sur le dernier, car il prend la place qui lui reste
if (strpos($item['class'],'lastUnit')===false){
if ($item['width']<$item['of']-1 OR $item['of']==2){
$boutons .= $bouton_action(
_T('home:bouton_home_slotenlarge'),
generer_action_auteur('instituer_home',"slotenlarge/$no_ligne/$no_slot",$redirect),'btn-small','',_T('home:bouton_home_slotenlarge_title'));
}
}
$boutons = "<div class='boutons spip-admin actions administrerhomeitem' id='bahi-$no'>"
//.$item['width']."/".$item['of'] // debug
.$boutons.
"</div>";
return $boutons;
}
/**
* Recuperer la config de la home, et fournir une config par defaut si besoin
* @return array
*/
function home_config(){
include_spip("inc/config");
$config = array(
'nb_lignes' => lire_config("home/nb_lignes",5),
'lignes' => lire_config("home/lignes",array()),
);
return $config;
}
/**
* Recuperer une ligne de la home par son numero, et la renseigner par defaut si pas connue
* @param int $no
* numero de la ligne, comptee a partir de 0 (zero)
* @return array
*/
function home_ligne($no){
$config = home_config();
$ligne = array("nb_slots"=>$no?2:1,"items"=>array());
if (isset($config['lignes'][$no]))
$ligne = $config['lignes'][$no];
$ligne['no'] = $no;
return $ligne;
}
/**
* Decrire chaque item de la ligne a partir de sa description simplifiee
* @param array $ligne
* int nb_slots : nombre de slots dans la ligne
* array items : description de chaque item
* int width : largeur en slots de chaque item
* @return array
*/
function home_ligne_items($ligne){
$syn = array("size2of4"=>"size1of2");
$items = array();
$nb_slots = (isset($ligne["nb_slots"])?$ligne["nb_slots"]:1);
$free_slots = $nb_slots;
for($i=0;$i<$nb_slots;$i++){
$item = array();
if (is_array($ligne['items']) AND count($ligne['items']))
$item = array_shift($ligne['items']);
$width = isset($item['width'])?$item['width']:1;
$width = min($free_slots,$width);
$free_slots -= $width;
if ($width==$nb_slots){
$width = $nb_slots = 1;
}
$class = "size{$width}of{$nb_slots}";
if (isset($syn[$class])) $class = $syn[$class];
$class = "unit of{$nb_slots} $class";
if ($i==0) $class .= " firstUnit";
if ($free_slots<=0) $class .= " lastUnit";
if (!$ligne['no'])
$class .= " firstRow";
$items[] = array(
'row' => $ligne['no'],
'slot' => $i,
'width' => $width,
'of' => $nb_slots,
'class' => trim($class),
);
if ($free_slots<=0)
break;
}
if ($items[0]['of']==4
AND count($items)==2
AND $items[0]['width']==2
AND $items[1]['width']==2){
$items[0]['of'] = $items[1]['of'] = 2;
$items[0]['width'] = $items[1]['width'] = 1;
}
return $items;
}
/**
* Construire tout le tableau qui decrit chaque item de la home
*
* @param bool $reload
* @return array
*/
function home_items($reload=false){
static $items;
if (is_null($items) OR $reload){
$config = home_config();
$items = array();
for($l=0;$l<$config['nb_lignes'];$l++){
$litems = home_ligne_items(home_ligne($l));
$items = array_merge($items,$litems);
}
}
return $items;
}
/**
* Compter le nombre d'items dans la home
* @return int
*/
function home_nb_items(){
return count(home_items());
}
/**
* Retourner la classe de chaque item
* @param int $no
* numero de l'item, compte a partir de 1 (#COMPTEUR_BOUCLE)
* @param string $default_class
* class par defaut quand on a depasse la grille
* @return string
*/
function home_class_item($no,$default_class=''){
$items = home_items();
if (isset($items[$no-1]['class']))
return $items[$no-1]['class'];
// si on a depasse le quota car pas utilise le compteur, on renvoie
// $default_class ou bien des lignes de 1 item
return ($default_class?$default_class:"unit of1 size1of1 firstUnit lastUnit");
}