Dotclear

source: admin/preferences.php @ 2736:09dd799a19bd

Revision 2736:09dd799a19bd, 22.4 KB checked in by Nicolas <nikrou77@…>, 11 years ago (diff)

Addresses #1896
Preferences: one editor for each available formats.

Line 
1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
6# Copyright (c) 2003-2014 Olivier Meunier & Association Dotclear
7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12
13require dirname(__FILE__).'/../inc/admin/prepend.php';
14
15dcPage::check('usage,contentadmin');
16
17$page_title = __('My preferences');
18
19$user_name = $core->auth->getInfo('user_name');
20$user_firstname = $core->auth->getInfo('user_firstname');
21$user_displayname = $core->auth->getInfo('user_displayname');
22$user_email = $core->auth->getInfo('user_email');
23$user_url = $core->auth->getInfo('user_url');
24$user_lang = $core->auth->getInfo('user_lang');
25$user_tz = $core->auth->getInfo('user_tz');
26$user_post_status = $core->auth->getInfo('user_post_status');
27
28$user_options = $core->auth->getOptions();
29if (empty($user_options['editor']) || !is_array($user_options['editor'])) {
30     $user_options['editor'] = array();
31}
32
33$core->auth->user_prefs->addWorkspace('dashboard');
34$user_dm_doclinks = $core->auth->user_prefs->dashboard->doclinks;
35$user_dm_dcnews = $core->auth->user_prefs->dashboard->dcnews;
36$user_dm_quickentry = $core->auth->user_prefs->dashboard->quickentry;
37
38$core->auth->user_prefs->addWorkspace('accessibility');
39$user_acc_nodragdrop = $core->auth->user_prefs->accessibility->nodragdrop;
40
41$core->auth->user_prefs->addWorkspace('interface');
42$user_ui_enhanceduploader = $core->auth->user_prefs->interface->enhanceduploader;
43if ($core->auth->isSuperAdmin()) {
44     $user_ui_hide_std_favicon = $core->auth->user_prefs->interface->hide_std_favicon;
45}
46$user_ui_iconset = @$core->auth->user_prefs->interface->iconset;
47$user_ui_nofavmenu = $core->auth->user_prefs->interface->nofavmenu;
48$user_ui_media_by_page = ($core->auth->user_prefs->interface->media_by_page ? $core->auth->user_prefs->interface->media_by_page : 30);
49
50$default_tab = !empty($_GET['tab']) ? html::escapeHTML($_GET['tab']) : 'user-profile';
51
52if (!empty($_GET['append']) || !empty($_GET['removed']) || !empty($_GET['neworder']) ||
53     !empty($_GET['replaced']) || !empty($_POST['appendaction']) || !empty($_POST['removeaction']) ||
54     !empty($_GET['db-updated'])) {
55     $default_tab = 'user-favorites';
56} elseif (!empty($_GET['updated'])) {
57     $default_tab = 'user-options';
58}
59if (($default_tab != 'user-profile') && ($default_tab != 'user-options') && ($default_tab != 'user-favorites')) {
60     $default_tab = 'user-profile';
61}
62
63# Editors combo
64$editors_combo = dcAdminCombos::getEditorsCombo();
65$editors = array_keys($editors_combo);
66
67# Format by editors
68$formaters = $core->getFormaters();
69$format_by_editors = array();
70foreach ($formaters as $editor => $formats) {
71     foreach ($formats as $format) {
72          $format_by_editors[$format][$editor] = $editor;
73     }
74}
75$available_formats = array('' => '');
76foreach (array_keys($format_by_editors) as $format) {
77     $available_formats[$format] = $format;
78     if (!isset($user_options['editor'][$format])) {
79          $user_options['editor'][$format] = '';
80     }
81}
82$status_combo = dcAdminCombos::getPostStatusescombo();
83
84$iconsets_combo = array(__('Default') => '');
85$iconsets_root = dirname(__FILE__).'/images/iconset/';
86if (is_dir($iconsets_root) && is_readable($iconsets_root)) {
87     if (($d = @dir($iconsets_root)) !== false) {
88          while (($entry = $d->read()) !== false) {
89               if ($entry != '.' && $entry != '..' && substr($entry, 0, 1) != '.' && is_dir($iconsets_root.'/'.$entry)) {
90                    $iconsets_combo[$entry] = $entry;
91               }
92          }
93     }
94}
95
96# Language codes
97$lang_combo = dcAdminCombos::getAdminLangsCombo();
98
99# Add or update user
100if (isset($_POST['user_name']))
101{
102     try
103     {
104          $pwd_check = !empty($_POST['cur_pwd']) && $core->auth->checkPassword(crypt::hmac(DC_MASTER_KEY,$_POST['cur_pwd']));
105
106          if ($core->auth->allowPassChange() && !$pwd_check && $user_email != $_POST['user_email']) {
107               throw new Exception(__('If you want to change your email or password you must provide your current password.'));
108          }
109
110          $cur = $core->con->openCursor($core->prefix.'user');
111
112          $cur->user_name = $user_name = $_POST['user_name'];
113          $cur->user_firstname = $user_firstname = $_POST['user_firstname'];
114          $cur->user_displayname = $user_displayname = $_POST['user_displayname'];
115          $cur->user_email = $user_email = $_POST['user_email'];
116          $cur->user_url = $user_url = $_POST['user_url'];
117          $cur->user_lang = $user_lang = $_POST['user_lang'];
118          $cur->user_tz = $user_tz = $_POST['user_tz'];
119
120          $cur->user_options = new ArrayObject($user_options);
121
122          if ($core->auth->allowPassChange() && !empty($_POST['new_pwd']))
123          {
124               if (!$pwd_check) {
125                    throw new Exception(__('If you want to change your email or password you must provide your current password.'));
126               }
127
128               if ($_POST['new_pwd'] != $_POST['new_pwd_c']) {
129                    throw new Exception(__("Passwords don't match"));
130               }
131
132               $cur->user_pwd = $_POST['new_pwd'];
133          }
134
135          # --BEHAVIOR-- adminBeforeUserUpdate
136          $core->callBehavior('adminBeforeUserProfileUpdate',$cur,$core->auth->userID());
137
138          # Udate user
139          $core->updUser($core->auth->userID(),$cur);
140
141          # --BEHAVIOR-- adminAfterUserUpdate
142          $core->callBehavior('adminAfterUserProfileUpdate',$cur,$core->auth->userID());
143
144          dcPage::addSuccessNotice(__('Personal information has been successfully updated.'));
145
146          http::redirect($core->adminurl->get("admin.user.preferences"));
147     }
148     catch (Exception $e)
149     {
150          $core->error->add($e->getMessage());
151     }
152}
153
154# Update user options
155if (isset($_POST['user_editor']))
156{
157     try
158     {
159          $cur = $core->con->openCursor($core->prefix.'user');
160
161          $cur->user_name = $user_name;
162          $cur->user_firstname = $user_firstname;
163          $cur->user_displayname = $user_displayname;
164          $cur->user_email = $user_email;
165          $cur->user_url = $user_url;
166          $cur->user_lang = $user_lang;
167          $cur->user_tz = $user_tz;
168
169          $cur->user_post_status = $user_post_status = $_POST['user_post_status'];
170
171          $user_options['edit_size'] = (integer) $_POST['user_edit_size'];
172          if ($user_options['edit_size'] < 1) {
173               $user_options['edit_size'] = 10;
174          }
175          $user_options['post_format'] = $_POST['user_post_format'];
176          $user_options['editor'] = $_POST['user_editor'];
177          $user_options['enable_wysiwyg'] = !empty($_POST['user_wysiwyg']);
178
179          $cur->user_options = new ArrayObject($user_options);
180
181          # --BEHAVIOR-- adminBeforeUserOptionsUpdate
182          $core->callBehavior('adminBeforeUserOptionsUpdate',$cur,$core->auth->userID());
183
184          # Update user prefs
185          $core->auth->user_prefs->accessibility->put('nodragdrop',!empty($_POST['user_acc_nodragdrop']),'boolean');
186          $core->auth->user_prefs->interface->put('enhanceduploader',!empty($_POST['user_ui_enhanceduploader']),'boolean');
187          if ($core->auth->isSuperAdmin()) {
188               # Applied to all users
189               $core->auth->user_prefs->interface->put('hide_std_favicon',!empty($_POST['user_ui_hide_std_favicon']),'boolean',null,true,true);
190          }
191          $core->auth->user_prefs->interface->put('media_by_page',(integer)$_POST['user_ui_media_by_page'],'integer');
192
193          # Udate user
194          $core->updUser($core->auth->userID(),$cur);
195
196          # --BEHAVIOR-- adminAfterUserOptionsUpdate
197          $core->callBehavior('adminAfterUserOptionsUpdate',$cur,$core->auth->userID());
198
199          dcPage::addSuccessNotice(__('Personal options has been successfully updated.'));
200          http::redirect($core->adminurl->get("admin.user.preferences").'#user-options');
201     }
202     catch (Exception $e)
203     {
204          $core->error->add($e->getMessage());
205     }
206}
207
208# Dashboard options
209if (isset($_POST['db-options'])) {
210     try
211     {
212          # --BEHAVIOR-- adminBeforeUserOptionsUpdate
213          $core->callBehavior('adminBeforeDashboardOptionsUpdate',$core->auth->userID());
214
215          # Update user prefs
216          $core->auth->user_prefs->dashboard->put('doclinks',!empty($_POST['user_dm_doclinks']),'boolean');
217          $core->auth->user_prefs->dashboard->put('dcnews',!empty($_POST['user_dm_dcnews']),'boolean');
218          $core->auth->user_prefs->dashboard->put('quickentry',!empty($_POST['user_dm_quickentry']),'boolean');
219          $core->auth->user_prefs->interface->put('iconset',(!empty($_POST['user_ui_iconset']) ? $_POST['user_ui_iconset'] : ''));
220          $core->auth->user_prefs->interface->put('nofavmenu',empty($_POST['user_ui_nofavmenu']),'boolean');
221
222          # --BEHAVIOR-- adminAfterUserOptionsUpdate
223          $core->callBehavior('adminAfterDashboardOptionsUpdate',$core->auth->userID());
224
225          dcPage::addSuccessNotice(__('Dashboard options has been successfully updated.'));
226          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
227     }
228     catch (Exception $e)
229     {
230          $core->error->add($e->getMessage());
231     }
232}
233
234# Add selected favorites
235if (!empty($_POST['appendaction']))
236{
237     try {
238          if (empty($_POST['append'])) {
239               throw new Exception(__('No favorite selected'));
240          }
241          $user_favs = $core->favs->getFavoriteIDs(false);
242          foreach ($_POST['append'] as $k => $v)
243          {
244               if ($core->favs->exists($v)) {
245                    $user_favs[] = $v;
246               }
247          }
248          $core->favs->setFavoriteIDs($user_favs,false);
249
250          if (!$core->error->flag()) {
251               dcPage::addSuccessNotice(__('Favorites have been successfully added.'));
252               http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
253          }
254     } catch (Exception $e) {
255          $core->error->add($e->getMessage());
256     }
257}
258
259# Delete selected favorites
260if (!empty($_POST['removeaction']))
261{
262     try {
263          if (empty($_POST['remove'])) {
264               throw new Exception(__('No favorite selected'));
265          }
266          $user_fav_ids = array();
267          foreach ($core->favs->getFavoriteIDs(false) as $v) {
268               $user_fav_ids[$v]=true;
269          }
270          foreach ($_POST['remove'] as $v)
271          {
272               if (isset($user_fav_ids[$v])) {
273                    unset($user_fav_ids[$v]);
274               }
275          }
276          $core->favs->setFavoriteIDs(array_keys($user_fav_ids),false);
277          if (!$core->error->flag()) {
278               dcPage::addSuccessNotice(__('Favorites have been successfully removed.'));
279               http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
280          }
281     } catch (Exception $e) {
282          $core->error->add($e->getMessage());
283     }
284}
285
286# Order favs
287$order = array();
288if (empty($_POST['favs_order']) && !empty($_POST['order'])) {
289     $order = $_POST['order'];
290     asort($order);
291     $order = array_keys($order);
292} elseif (!empty($_POST['favs_order'])) {
293     $order = explode(',',$_POST['favs_order']);
294}
295
296if (!empty($_POST['saveorder']) && !empty($order))
297{
298     foreach ($order as $k => $v) {
299          if (!$core->favs->exists($v)) {
300               unset($order[$k]);
301          }
302     }
303     $core->favs->setFavoriteIDs($order,false);
304     if (!$core->error->flag()) {
305          dcPage::addSuccessNotice(__('Favorites have been successfully updated.'));
306          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
307     }
308}
309
310# Replace default favorites by current set (super admin only)
311if (!empty($_POST['replace']) && $core->auth->isSuperAdmin()) {
312     $user_favs = $core->favs->getFavoriteIDs(false);
313     $core->favs->setFavoriteIDs($user_favs,true);
314
315     if (!$core->error->flag()) {
316          dcPage::addSuccessNotice(__('Default favorites have been successfully updated.'));
317          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
318     }
319}
320
321/* DISPLAY
322-------------------------------------------------------- */
323dcPage::open($page_title,
324     dcPage::jsLoad('js/_preferences.js').
325     ($user_acc_nodragdrop ? '' : dcPage::jsLoad('js/_preferences-dragdrop.js')).
326     dcPage::jsLoad('js/jquery/jquery-ui.custom.js').
327     dcPage::jsLoad('js/jquery/jquery.ui.touch-punch.js').
328     dcPage::jsLoad('js/jquery/jquery.pwstrength.js').
329          '<script type="text/javascript">'."\n".
330          "//<![CDATA[\n".
331          "\$(function() {\n".
332          "    \$('#new_pwd').pwstrength({texts: ['".
333                    sprintf(__('Password strength: %s'),__('very weak'))."', '".
334                    sprintf(__('Password strength: %s'),__('weak'))."', '".
335                    sprintf(__('Password strength: %s'),__('mediocre'))."', '".
336                    sprintf(__('Password strength: %s'),__('strong'))."', '".
337                    sprintf(__('Password strength: %s'),__('very strong'))."']});\n".
338          "});".
339          "\n//]]>\n".
340          "</script>\n".
341     dcPage::jsPageTabs($default_tab).
342     dcPage::jsConfirmClose('user-form').
343
344     # --BEHAVIOR-- adminPreferencesHeaders
345     $core->callBehavior('adminPreferencesHeaders'),
346
347     dcPage::breadcrumb(
348     array(
349          html::escapeHTML($core->auth->userID()) => '',
350          $page_title => ''
351     ))
352);
353
354if (!empty($_GET['upd'])) {
355     dcPage::success(__('Personal information has been successfully updated.'));
356}
357if (!empty($_GET['updated'])) {
358     dcPage::success(__('Personal options has been successfully updated.'));
359}
360if (!empty($_GET['db-updated'])) {
361     dcPage::success(__('Dashboard options has been successfully updated.'));
362}
363if (!empty($_GET['append'])) {
364     dcPage::success(__('Favorites have been successfully added.'));
365}
366if (!empty($_GET['neworder'])) {
367     dcPage::success(__('Favorites have been successfully updated.'));
368}
369if (!empty($_GET['removed'])) {
370     dcPage::success(__('Favorites have been successfully removed.'));
371}
372if (!empty($_GET['replaced'])) {
373     dcPage::success(__('Default favorites have been successfully updated.'));
374}
375
376# User profile
377echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">';
378
379echo
380'<h3>'.__('My profile').'</h3>'.
381'<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="user-form">'.
382
383'<p><label for="user_name">'.__('Last Name:').'</label>'.
384form::field('user_name',20,255,html::escapeHTML($user_name)).'</p>'.
385
386'<p><label for="user_firstname">'.__('First Name:').'</label>'.
387form::field('user_firstname',20,255,html::escapeHTML($user_firstname)).'</p>'.
388
389'<p><label for="user_displayname">'.__('Display name:').'</label>'.
390form::field('user_displayname',20,255,html::escapeHTML($user_displayname)).'</p>'.
391
392'<p><label for="user_email">'.__('Email:').'</label>'.
393form::field('user_email',20,255,html::escapeHTML($user_email)).'</p>'.
394
395'<p><label for="user_url">'.__('URL:').'</label>'.
396form::field('user_url',30,255,html::escapeHTML($user_url)).'</p>'.
397
398'<p><label for="user_lang">'.__('Language for my interface:').'</label>'.
399form::combo('user_lang',$lang_combo,$user_lang,'l10n').'</p>'.
400
401'<p><label for="user_tz">'.__('My timezone:').'</label>'.
402form::combo('user_tz',dt::getZones(true,true),$user_tz).'</p>';
403
404
405if ($core->auth->allowPassChange())
406{
407     echo
408     '<h4 class="vertical-separator pretty-title">'.__('Change my password').'</h4>'.
409
410     '<div class="pw-table">'.
411     '<p class="pw-cell"><label for="new_pwd">'.__('New password:').'</label>'.
412     form::password('new_pwd',20,255,'','','',false,' data-indicator="pwindicator" ').'</p>'.
413     '<div id="pwindicator">'.
414     '    <div class="bar"></div>'.
415     '    <p class="label no-margin"></p>'.
416     '</div>'.
417     '</div>'.
418
419     '<p><label for="new_pwd_c">'.__('Confirm new password:').'</label>'.
420     form::password('new_pwd_c',20,255).'</p>'.
421
422     '<p><label for="cur_pwd">'.__('Your current password:').'</label>'.
423     form::password('cur_pwd',20,255).'</p>'.
424     '<p class="form-note warn">'.
425     __('If you have changed your email or password you must provide your current password to save these modifications.').
426     '</p>';
427}
428
429echo
430'<p class="clear vertical-separator">'.
431$core->formNonce().
432'<input type="submit" accesskey="s" value="'.__('Update my profile').'" /></p>'.
433'</form>'.
434
435'</div>';
436
437# User options : some from actual user profile, dashboard modules, ...
438echo '<div class="multi-part" id="user-options" title="'.__('My options').'">';
439
440echo
441'<form action="'.$core->adminurl->get("admin.user.preferences").'#user-options" method="post" id="opts-forms">'.
442'<h3>'.__('My options').'</h3>';
443
444echo
445'<div class="fieldset">'.
446'<h4>'.__('Interface').'</h4>'.
447
448'<p><label for="user_ui_enhanceduploader" class="classic">'.
449form::checkbox('user_ui_enhanceduploader',1,$user_ui_enhanceduploader).' '.
450__('Activate enhanced uploader in media manager').'</label></p>'.
451
452'<p><label for="user_acc_nodragdrop" class="classic">'.
453form::checkbox('user_acc_nodragdrop',1,$user_acc_nodragdrop).' '.
454__('Disable javascript powered drag and drop for ordering items').'</label></p>'.
455'<p class="clear form-note">'.__('If checked, numeric fields will allow to type the elements\' ordering number.').'</p>';
456
457echo
458'<p><label for="user_ui_media_by_page" class="classic">'.__('Number of elements displayed per page in media manager:').'</label> '.
459form::field('user_ui_media_by_page',5,3,(integer) $user_ui_media_by_page).'</p>';
460
461if ($core->auth->isSuperAdmin()) {
462     echo
463     '<p><label for="user_ui_hide_std_favicon" class="classic">'.
464     form::checkbox('user_ui_hide_std_favicon',1,$user_ui_hide_std_favicon).' '.
465     __('Do not use standard favicon').'</label> '.
466     '<span class="clear form-note warn">'.__('This will be applied for all users').'.</span>'.
467     '</p>';//Opera sucks;
468}
469
470echo
471'</div>';
472
473echo
474'<div class="fieldset">'.
475'<h4>'.__('Edition').'</h4>';
476
477foreach ($format_by_editors as $format => $editors) {
478     echo
479     '<p class="field"><label for="user_editor">'.sprintf(__('Preferred editor for %s:'),$format).'</label>'.
480     form::combo(
481          'user_editor['.$format.']',
482          array_merge(array(__('Choose an editor') => ''),$editors),$user_options['editor'][$format]
483     ).'</p>';
484}
485echo
486'<p class="field"><label for="user_post_format">'.__('Preferred format:').'</label>'.
487form::combo('user_post_format',$available_formats,$user_options['post_format']).'</p>';
488
489echo
490'<p class="field"><label for="user_post_status">'.__('Default entry status:').'</label>'.
491form::combo('user_post_status',$status_combo,$user_post_status).'</p>'.
492
493'<p class="field"><label for="user_edit_size">'.__('Entry edit field height:').'</label>'.
494form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).'</p>'.
495
496'<p><label for="user_wysiwyg" class="classic">'.
497form::checkbox('user_wysiwyg',1,$user_options['enable_wysiwyg']).' '.
498__('Enable WYSIWYG mode').'</label></p>'.
499
500'</div>';
501
502echo
503'<h4 class="pretty-title">'.__('Other options').'</h4>';
504
505# --BEHAVIOR-- adminPreferencesForm
506$core->callBehavior('adminPreferencesForm',$core);
507
508echo
509'<p class="clear vertical-separator">'.
510$core->formNonce().
511'<input type="submit" accesskey="s" value="'.__('Save my options').'" /></p>'.
512'</form>';
513
514echo '</div>';
515
516# My dashboard
517echo '<div class="multi-part" id="user-favorites" title="'.__('My dashboard').'">';
518$ws = $core->auth->user_prefs->addWorkspace('favorites');
519echo '<h3>'.__('My dashboard').'</h3>';
520
521echo '<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="favs-form" class="two-boxes odd">';
522
523echo '<div id="my-favs" class="fieldset"><h4>'.__('My favorites').'</h4>';
524
525$count = 0;
526$user_fav = $core->favs->getFavoriteIDs(false);
527foreach ($user_fav as $id) {
528     $fav = $core->favs->getFavorite($id);
529     if ($fav != false) {
530          // User favorites only
531          if ($count == 0) echo '<ul class="fav-list">';
532          $count++;
533          echo '<li id="fu-'.$id.'">'.'<label for="fuk-'.$id.'">'.
534               '<img src="'.dc_admin_icon_url($fav['small-icon']).'" alt="" /> '.'<span class="zoom"><img src="'.dc_admin_icon_url($fav['large-icon']).'" alt="" /></span>'.
535               form::field(array('order['.$id.']'),2,3,$count,'position','',false,'title="'.sprintf(__('position of %s'),$fav['title']).'"').
536               form::hidden(array('dynorder[]','dynorder-'.$id.''),$id).
537               form::checkbox(array('remove[]','fuk-'.$id),$id).__($fav['title']).'</label>'.
538               '</li>';
539     }
540}
541if ($count > 0) echo '</ul>';
542if ($count > 0) {
543     echo
544     '<div class="clear">'.
545     '<p>'.form::hidden('favs_order','').
546     $core->formNonce().
547     '<input type="submit" name="saveorder" value="'.__('Save order').'" /> '.
548
549     '<input type="submit" class="delete" name="removeaction" '.
550     'value="'.__('Delete selected favorites').'" '.
551     'onclick="return window.confirm(\''.html::escapeJS(
552          __('Are you sure you want to remove selected favorites?')).'\');" /></p>'.
553
554     ($core->auth->isSuperAdmin() ?
555          '<div class="info">'.
556          '<p>'.__('If you are a super administrator, you may define this set of favorites to be used by default on all blogs of this installation.').'</p>'.
557          '<p><input class="reset" type="submit" name="replace" value="'.__('Define as default favorites').'" />'.'</p>'.
558          '</div>'
559          :
560          '').
561
562     '</div>';
563} else {
564     echo
565     '<p>'.__('Currently no personal favorites.').'</p>';
566}
567
568$avail_fav = $core->favs->getFavorites($core->favs->getAvailableFavoritesIDs());
569$default_fav_ids = array();
570foreach($core->favs->getFavoriteIDs(true) as $v) {
571     $default_fav_ids[$v]=true;
572}
573echo '</div>'; # /box my-fav
574
575echo '<div class="fieldset" id="available-favs">';
576# Available favorites
577echo '<h5 class="pretty-title">'.__('Other available favorites').'</h5>';
578$count = 0;
579function cmp($a,$b) {
580    if ($a['title'] == $b['title']) {
581        return 0;
582    }
583    return ($a['title'] < $b['title']) ? -1 : 1;
584}
585uasort($avail_fav,'cmp');
586
587foreach ($avail_fav as $k => $v) {
588     if (in_array($k,$user_fav)) {
589          unset($avail_fav[$k]);
590     }
591}
592foreach ($avail_fav as $k=>$fav) {
593     if ($count == 0) echo '<ul class="fav-list">';
594     $count++;
595     echo '<li id="fa-'.$k.'">'.'<label for="fak-'.$k.'">'.
596          '<img src="'.dc_admin_icon_url($fav['small-icon']).'" alt="" /> '.
597          '<span class="zoom"><img src="'.dc_admin_icon_url($fav['large-icon']).'" alt="" /></span>'.
598          form::checkbox(array('append[]','fak-'.$k),$k).
599          $fav['title'].'</label>'.
600          (isset($default_fav_ids[$k]) ? ' <span class="default-fav"><img src="images/selected.png" alt="'.__('(default favorite)').'" /></span>' : '').
601          '</li>';
602}
603if ($count > 0) echo '</ul>';
604echo
605'<p>'.
606$core->formNonce().
607'<input type="submit" name="appendaction" value="'.__('Add to my favorites').'" /></p>';
608echo '</div>'; # /available favorites
609
610echo '</form>';
611
612echo
613'<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="db-forms" class="two-boxes even">'.
614
615'<div class="fieldset">'.
616'<h4>'.__('Menu').'</h4>'.
617'<p><label for="user_ui_nofavmenu" class="classic">'.
618form::checkbox('user_ui_nofavmenu',1,!$user_ui_nofavmenu).' '.
619__('Display favorites at the top of the menu').'</label></p></div>';
620
621if (count($iconsets_combo) > 1) {
622     echo
623          '<div class="fieldset">'.
624          '<h4>'.__('Dashboard icons').'</h4>'.
625          '<p><label for="user_ui_iconset" class="classic">'.__('Iconset:').'</label> '.
626          form::combo('user_ui_iconset',$iconsets_combo,$user_ui_iconset).'</p>'.
627          '</div>';
628} else {
629     echo '<p class="hidden">'.form::hidden('user_ui_iconset','').'</p>';
630}
631
632echo
633'<div class="fieldset">'.
634'<h4>'.__('Dashboard modules').'</h4>'.
635
636'<p><label for="user_dm_doclinks" class="classic">'.
637form::checkbox('user_dm_doclinks',1,$user_dm_doclinks).' '.
638__('Display documentation links').'</label></p>'.
639
640'<p><label for="user_dm_dcnews" class="classic">'.
641form::checkbox('user_dm_dcnews',1,$user_dm_dcnews).' '.
642__('Display Dotclear news').'</label></p>'.
643
644'<p><label for="user_dm_quickentry" class="classic">'.
645form::checkbox('user_dm_quickentry',1,$user_dm_quickentry).' '.
646__('Display quick entry form').'</label><br class="clear" />'. //Opera sucks
647'</p>';
648echo '</div>';
649
650# --BEHAVIOR-- adminDashboardOptionsForm
651$core->callBehavior('adminDashboardOptionsForm',$core);
652
653echo
654'<p>'.
655form::hidden('db-options','-').
656$core->formNonce().
657'<input type="submit" accesskey="s" value="'.__('Save my dashboard options').'" /></p>'.
658'</form>';
659
660echo '</div>'; # /multipart-user-favorites
661
662dcPage::helpBlock('core_user_pref');
663dcPage::close();
Note: See TracBrowser for help on using the repository browser.

Sites map