Dotclear

source: admin/preferences.php @ 2757:ff3b115e98a0

Revision 2757:ff3b115e98a0, 22.5 KB checked in by Nicolas <nikrou77@…>, 11 years ago (diff)

Fix issue with generated html : id was not unique

RevLine 
[0]1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
[2682]6# Copyright (c) 2003-2014 Olivier Meunier & Association Dotclear
[0]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
[3]17$page_title = __('My preferences');
[0]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();
[2736]29if (empty($user_options['editor']) || !is_array($user_options['editor'])) {
30     $user_options['editor'] = array();
[2679]31}
[0]32
[13]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
[160]38$core->auth->user_prefs->addWorkspace('accessibility');
[240]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;
[244]43if ($core->auth->isSuperAdmin()) {
44     $user_ui_hide_std_favicon = $core->auth->user_prefs->interface->hide_std_favicon;
45}
[692]46$user_ui_iconset = @$core->auth->user_prefs->interface->iconset;
[821]47$user_ui_nofavmenu = $core->auth->user_prefs->interface->nofavmenu;
[2021]48$user_ui_media_by_page = ($core->auth->user_prefs->interface->media_by_page ? $core->auth->user_prefs->interface->media_by_page : 30);
[160]49
[247]50$default_tab = !empty($_GET['tab']) ? html::escapeHTML($_GET['tab']) : 'user-profile';
[3]51
[2566]52if (!empty($_GET['append']) || !empty($_GET['removed']) || !empty($_GET['neworder']) ||
53     !empty($_GET['replaced']) || !empty($_POST['appendaction']) || !empty($_POST['removeaction']) ||
[1762]54     !empty($_GET['db-updated'])) {
[3]55     $default_tab = 'user-favorites';
[13]56} elseif (!empty($_GET['updated'])) {
57     $default_tab = 'user-options';
[3]58}
[247]59if (($default_tab != 'user-profile') && ($default_tab != 'user-options') && ($default_tab != 'user-favorites')) {
60     $default_tab = 'user-profile';
61}
[3]62
[2679]63# Editors combo
64$editors_combo = dcAdminCombos::getEditorsCombo();
65$editors = array_keys($editors_combo);
66
[2736]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     }
[2679]74}
[2736]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}
[1719]82$status_combo = dcAdminCombos::getPostStatusescombo();
[0]83
[692]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) {
[1773]89               if ($entry != '.' && $entry != '..' && substr($entry, 0, 1) != '.' && is_dir($iconsets_root.'/'.$entry)) {
[692]90                    $iconsets_combo[$entry] = $entry;
91               }
92          }
93     }
94}
95
[0]96# Language codes
[1719]97$lang_combo = dcAdminCombos::getAdminLangsCombo();
[0]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']));
[2566]105
[0]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          }
[2566]109
[0]110          $cur = $core->con->openCursor($core->prefix.'user');
[2566]111
[0]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'];
[13]119
[0]120          $cur->user_options = new ArrayObject($user_options);
[2566]121
[0]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               }
[2566]127
[0]128               if ($_POST['new_pwd'] != $_POST['new_pwd_c']) {
129                    throw new Exception(__("Passwords don't match"));
130               }
[2566]131
[0]132               $cur->user_pwd = $_POST['new_pwd'];
133          }
[2566]134
[0]135          # --BEHAVIOR-- adminBeforeUserUpdate
[13]136          $core->callBehavior('adminBeforeUserProfileUpdate',$cur,$core->auth->userID());
[2566]137
[13]138          # Udate user
139          $core->updUser($core->auth->userID(),$cur);
[2566]140
[13]141          # --BEHAVIOR-- adminAfterUserUpdate
142          $core->callBehavior('adminAfterUserProfileUpdate',$cur,$core->auth->userID());
[2566]143
[2256]144          dcPage::addSuccessNotice(__('Personal information has been successfully updated.'));
145
[2720]146          http::redirect($core->adminurl->get("admin.user.preferences"));
[13]147     }
148     catch (Exception $e)
149     {
150          $core->error->add($e->getMessage());
151     }
152}
153
154# Update user options
[2736]155if (isset($_POST['user_editor']))
[590]156{
[13]157     try
158     {
159          $cur = $core->con->openCursor($core->prefix.'user');
[2566]160
[13]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'];
[2566]170
[13]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'];
[2679]176          $user_options['editor'] = $_POST['user_editor'];
[13]177          $user_options['enable_wysiwyg'] = !empty($_POST['user_wysiwyg']);
[2566]178
[13]179          $cur->user_options = new ArrayObject($user_options);
[2566]180
[897]181          # --BEHAVIOR-- adminBeforeUserOptionsUpdate
182          $core->callBehavior('adminBeforeUserOptionsUpdate',$cur,$core->auth->userID());
[2566]183
[13]184          # Update user prefs
[240]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');
[244]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          }
[2021]191          $core->auth->user_prefs->interface->put('media_by_page',(integer)$_POST['user_ui_media_by_page'],'integer');
[2566]192
[0]193          # Udate user
194          $core->updUser($core->auth->userID(),$cur);
[2566]195
[897]196          # --BEHAVIOR-- adminAfterUserOptionsUpdate
197          $core->callBehavior('adminAfterUserOptionsUpdate',$cur,$core->auth->userID());
[2566]198
[2256]199          dcPage::addSuccessNotice(__('Personal options has been successfully updated.'));
[2720]200          http::redirect($core->adminurl->get("admin.user.preferences").'#user-options');
[0]201     }
202     catch (Exception $e)
203     {
204          $core->error->add($e->getMessage());
205     }
206}
207
[1762]208# Dashboard options
209if (isset($_POST['db-options'])) {
210     try
211     {
212          # --BEHAVIOR-- adminBeforeUserOptionsUpdate
213          $core->callBehavior('adminBeforeDashboardOptionsUpdate',$core->auth->userID());
[2566]214
[1762]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'] : ''));
[1763]220          $core->auth->user_prefs->interface->put('nofavmenu',empty($_POST['user_ui_nofavmenu']),'boolean');
[2566]221
[1762]222          # --BEHAVIOR-- adminAfterUserOptionsUpdate
223          $core->callBehavior('adminAfterDashboardOptionsUpdate',$core->auth->userID());
[2566]224
[2256]225          dcPage::addSuccessNotice(__('Dashboard options has been successfully updated.'));
[2720]226          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
[1762]227     }
228     catch (Exception $e)
229     {
230          $core->error->add($e->getMessage());
231     }
232}
233
[3]234# Add selected favorites
[2566]235if (!empty($_POST['appendaction']))
[590]236{
237     try {
238          if (empty($_POST['append'])) {
239               throw new Exception(__('No favorite selected'));
240          }
[2229]241          $user_favs = $core->favs->getFavoriteIDs(false);
[590]242          foreach ($_POST['append'] as $k => $v)
243          {
[2229]244               if ($core->favs->exists($v)) {
245                    $user_favs[] = $v;
[590]246               }
247          }
[2229]248          $core->favs->setFavoriteIDs($user_favs,false);
249
[590]250          if (!$core->error->flag()) {
[2256]251               dcPage::addSuccessNotice(__('Favorites have been successfully added.'));
[2720]252               http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
[590]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          }
[2229]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)
[590]271          {
[2229]272               if (isset($user_fav_ids[$v])) {
273                    unset($user_fav_ids[$v]);
[590]274               }
275          }
[2229]276          $core->favs->setFavoriteIDs(array_keys($user_fav_ids),false);
[590]277          if (!$core->error->flag()) {
[2256]278               dcPage::addSuccessNotice(__('Favorites have been successfully removed.'));
[2720]279               http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
[3]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{
[2229]298     foreach ($order as $k => $v) {
299          if (!$core->favs->exists($v)) {
300               unset($order[$k]);
[3]301          }
[2566]302     }
[2229]303     $core->favs->setFavoriteIDs($order,false);
[3]304     if (!$core->error->flag()) {
[2256]305          dcPage::addSuccessNotice(__('Favorites have been successfully updated.'));
[2720]306          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
[3]307     }
308}
309
[30]310# Replace default favorites by current set (super admin only)
311if (!empty($_POST['replace']) && $core->auth->isSuperAdmin()) {
[2229]312     $user_favs = $core->favs->getFavoriteIDs(false);
313     $core->favs->setFavoriteIDs($user_favs,true);
[30]314
315     if (!$core->error->flag()) {
[2256]316          dcPage::addSuccessNotice(__('Default favorites have been successfully updated.'));
[2720]317          http::redirect($core->adminurl->get("admin.user.preferences").'#user-favorites');
[30]318     }
319}
[0]320
321/* DISPLAY
322-------------------------------------------------------- */
323dcPage::open($page_title,
324     dcPage::jsLoad('js/_preferences.js').
[240]325     ($user_acc_nodragdrop ? '' : dcPage::jsLoad('js/_preferences-dragdrop.js')).
[906]326     dcPage::jsLoad('js/jquery/jquery-ui.custom.js').
[2495]327     dcPage::jsLoad('js/jquery/jquery.ui.touch-punch.js').
[1368]328     dcPage::jsLoad('js/jquery/jquery.pwstrength.js').
329          '<script type="text/javascript">'."\n".
330          "//<![CDATA[\n".
331          "\$(function() {\n".
[1375]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".
[2736]338          "});".
[1368]339          "\n//]]>\n".
340          "</script>\n".
[3]341     dcPage::jsPageTabs($default_tab).
[0]342     dcPage::jsConfirmClose('user-form').
[2566]343
[0]344     # --BEHAVIOR-- adminPreferencesHeaders
[1358]345     $core->callBehavior('adminPreferencesHeaders'),
346
347     dcPage::breadcrumb(
348     array(
349          html::escapeHTML($core->auth->userID()) => '',
[2166]350          $page_title => ''
[1358]351     ))
[0]352);
353
354if (!empty($_GET['upd'])) {
[1553]355     dcPage::success(__('Personal information has been successfully updated.'));
[0]356}
[13]357if (!empty($_GET['updated'])) {
[1553]358     dcPage::success(__('Personal options has been successfully updated.'));
[13]359}
[1762]360if (!empty($_GET['db-updated'])) {
361     dcPage::success(__('Dashboard options has been successfully updated.'));
362}
[3]363if (!empty($_GET['append'])) {
[1553]364     dcPage::success(__('Favorites have been successfully added.'));
[3]365}
366if (!empty($_GET['neworder'])) {
[1553]367     dcPage::success(__('Favorites have been successfully updated.'));
[3]368}
369if (!empty($_GET['removed'])) {
[1553]370     dcPage::success(__('Favorites have been successfully removed.'));
[3]371}
[30]372if (!empty($_GET['replaced'])) {
[1553]373     dcPage::success(__('Default favorites have been successfully updated.'));
[30]374}
[3]375
376# User profile
377echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">';
[0]378
379echo
[1786]380'<h3>'.__('My profile').'</h3>'.
[2720]381'<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="user-form">'.
[1609]382
[1399]383'<p><label for="user_name">'.__('Last Name:').'</label>'.
384form::field('user_name',20,255,html::escapeHTML($user_name)).'</p>'.
[0]385
[1399]386'<p><label for="user_firstname">'.__('First Name:').'</label>'.
387form::field('user_firstname',20,255,html::escapeHTML($user_firstname)).'</p>'.
[0]388
[1399]389'<p><label for="user_displayname">'.__('Display name:').'</label>'.
390form::field('user_displayname',20,255,html::escapeHTML($user_displayname)).'</p>'.
[0]391
[1399]392'<p><label for="user_email">'.__('Email:').'</label>'.
393form::field('user_email',20,255,html::escapeHTML($user_email)).'</p>'.
[0]394
[1399]395'<p><label for="user_url">'.__('URL:').'</label>'.
[1726]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
[0]404
405if ($core->auth->allowPassChange())
406{
407     echo
[1786]408     '<h4 class="vertical-separator pretty-title">'.__('Change my password').'</h4>'.
[2566]409
[1375]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>'.
[1468]413     '<div id="pwindicator">'.
414     '    <div class="bar"></div>'.
415     '    <p class="label no-margin"></p>'.
416     '</div>'.
417     '</div>'.
[2566]418
[1474]419     '<p><label for="new_pwd_c">'.__('Confirm new password:').'</label>'.
[1375]420     form::password('new_pwd_c',20,255).'</p>'.
[2566]421
[1609]422     '<p><label for="cur_pwd">'.__('Your current password:').'</label>'.
[1607]423     form::password('cur_pwd',20,255).'</p>'.
[1609]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>';
[0]427}
428
429echo
[1609]430'<p class="clear vertical-separator">'.
[0]431$core->formNonce().
[1609]432'<input type="submit" accesskey="s" value="'.__('Update my profile').'" /></p>'.
433'</form>'.
[0]434
[1609]435'</div>';
[3]436
437# User options : some from actual user profile, dashboard modules, ...
438echo '<div class="multi-part" id="user-options" title="'.__('My options').'">';
439
440echo
[2720]441'<form action="'.$core->adminurl->get("admin.user.preferences").'#user-options" method="post" id="opts-forms">'.
[1786]442'<h3>'.__('My options').'</h3>';
[3]443
[1609]444echo
[1786]445'<div class="fieldset">'.
[1609]446'<h4>'.__('Interface').'</h4>'.
447
448'<p><label for="user_ui_enhanceduploader" class="classic">'.
449form::checkbox('user_ui_enhanceduploader',1,$user_ui_enhanceduploader).' '.
[1786]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>';
[1609]456
[2021]457echo
[2206]458'<p><label for="user_ui_media_by_page" class="classic">'.__('Number of elements displayed per page in media manager:').'</label> '.
[2021]459form::field('user_ui_media_by_page',5,3,(integer) $user_ui_media_by_page).'</p>';
460
[1609]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).' '.
[1786]465     __('Do not use standard favicon').'</label> '.
466     '<span class="clear form-note warn">'.__('This will be applied for all users').'.</span>'.
[1609]467     '</p>';//Opera sucks;
468}
469
470echo
[1786]471'</div>';
[1609]472
473echo
[1786]474'<div class="fieldset">'.
[2736]475'<h4>'.__('Edition').'</h4>';
[1609]476
[2736]477foreach ($format_by_editors as $format => $editors) {
478     echo
[2757]479     '<p class="field"><label for="user_editor_'.$format.'">'.sprintf(__('Preferred editor for %s:'),$format).'</label>'.
[2736]480     form::combo(
[2757]481          array('user_editor['.$format.']', 'user_editor_'.$format),
482          array_merge(array(__('Choose an editor') => ''),$editors),
483          $user_options['editor'][$format]
[2736]484     ).'</p>';
485}
486echo
487'<p class="field"><label for="user_post_format">'.__('Preferred format:').'</label>'.
488form::combo('user_post_format',$available_formats,$user_options['post_format']).'</p>';
[2679]489
[2736]490echo
[1786]491'<p class="field"><label for="user_post_status">'.__('Default entry status:').'</label>'.
[1399]492form::combo('user_post_status',$status_combo,$user_post_status).'</p>'.
[3]493
[1786]494'<p class="field"><label for="user_edit_size">'.__('Entry edit field height:').'</label>'.
[1399]495form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).'</p>'.
[3]496
497'<p><label for="user_wysiwyg" class="classic">'.
[454]498form::checkbox('user_wysiwyg',1,$user_options['enable_wysiwyg']).' '.
[1786]499__('Enable WYSIWYG mode').'</label></p>'.
500
501'</div>';
[240]502
[1609]503echo
[1786]504'<h4 class="pretty-title">'.__('Other options').'</h4>';
[1609]505
506# --BEHAVIOR-- adminPreferencesForm
507$core->callBehavior('adminPreferencesForm',$core);
508
509echo
[1786]510'<p class="clear vertical-separator">'.
[3]511$core->formNonce().
[1609]512'<input type="submit" accesskey="s" value="'.__('Save my options').'" /></p>'.
[3]513'</form>';
514
515echo '</div>';
516
[1763]517# My dashboard
[1762]518echo '<div class="multi-part" id="user-favorites" title="'.__('My dashboard').'">';
[3]519$ws = $core->auth->user_prefs->addWorkspace('favorites');
[1941]520echo '<h3>'.__('My dashboard').'</h3>';
[1609]521
[2720]522echo '<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="favs-form" class="two-boxes odd">';
[1763]523
524echo '<div id="my-favs" class="fieldset"><h4>'.__('My favorites').'</h4>';
[32]525
[3]526$count = 0;
[2229]527$user_fav = $core->favs->getFavoriteIDs(false);
528foreach ($user_fav as $id) {
529     $fav = $core->favs->getFavorite($id);
530     if ($fav != false) {
531          // User favorites only
532          if ($count == 0) echo '<ul class="fav-list">';
533          $count++;
534          echo '<li id="fu-'.$id.'">'.'<label for="fuk-'.$id.'">'.
535               '<img src="'.dc_admin_icon_url($fav['small-icon']).'" alt="" /> '.'<span class="zoom"><img src="'.dc_admin_icon_url($fav['large-icon']).'" alt="" /></span>'.
536               form::field(array('order['.$id.']'),2,3,$count,'position','',false,'title="'.sprintf(__('position of %s'),$fav['title']).'"').
537               form::hidden(array('dynorder[]','dynorder-'.$id.''),$id).
538               form::checkbox(array('remove[]','fuk-'.$id),$id).__($fav['title']).'</label>'.
539               '</li>';
[3]540     }
541}
542if ($count > 0) echo '</ul>';
543if ($count > 0) {
544     echo
545     '<div class="clear">'.
[82]546     '<p>'.form::hidden('favs_order','').
[3]547     $core->formNonce().
[114]548     '<input type="submit" name="saveorder" value="'.__('Save order').'" /> '.
549
550     '<input type="submit" class="delete" name="removeaction" '.
[3]551     'value="'.__('Delete selected favorites').'" '.
552     'onclick="return window.confirm(\''.html::escapeJS(
553          __('Are you sure you want to remove selected favorites?')).'\');" /></p>'.
[82]554
[1924]555     ($core->auth->isSuperAdmin() ?
[1763]556          '<div class="info">'.
557          '<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>'.
[1924]558          '<p><input class="reset" type="submit" name="replace" value="'.__('Define as default favorites').'" />'.'</p>'.
559          '</div>'
560          :
[114]561          '').
[1924]562
[3]563     '</div>';
564} else {
565     echo
566     '<p>'.__('Currently no personal favorites.').'</p>';
567}
568
[2229]569$avail_fav = $core->favs->getFavorites($core->favs->getAvailableFavoritesIDs());
570$default_fav_ids = array();
571foreach($core->favs->getFavoriteIDs(true) as $v) {
572     $default_fav_ids[$v]=true;
[1773]573}
[1763]574echo '</div>'; # /box my-fav
[1609]575
[1763]576echo '<div class="fieldset" id="available-favs">';
[1773]577# Available favorites
[1786]578echo '<h5 class="pretty-title">'.__('Other available favorites').'</h5>';
[3]579$count = 0;
580function cmp($a,$b) {
[2229]581    if ($a['title'] == $b['title']) {
[3]582        return 0;
583    }
[2229]584    return ($a['title'] < $b['title']) ? -1 : 1;
[3]585}
[2229]586uasort($avail_fav,'cmp');
587
588foreach ($avail_fav as $k => $v) {
589     if (in_array($k,$user_fav)) {
590          unset($avail_fav[$k]);
[3]591     }
[1773]592}
[2229]593foreach ($avail_fav as $k=>$fav) {
594     if ($count == 0) echo '<ul class="fav-list">';
595     $count++;
596     echo '<li id="fa-'.$k.'">'.'<label for="fak-'.$k.'">'.
597          '<img src="'.dc_admin_icon_url($fav['small-icon']).'" alt="" /> '.
598          '<span class="zoom"><img src="'.dc_admin_icon_url($fav['large-icon']).'" alt="" /></span>'.
599          form::checkbox(array('append[]','fak-'.$k),$k).
600          $fav['title'].'</label>'.
601          (isset($default_fav_ids[$k]) ? ' <span class="default-fav"><img src="images/selected.png" alt="'.__('(default favorite)').'" /></span>' : '').
602          '</li>';
603}
[3]604if ($count > 0) echo '</ul>';
605echo
606'<p>'.
607$core->formNonce().
[114]608'<input type="submit" name="appendaction" value="'.__('Add to my favorites').'" /></p>';
[1763]609echo '</div>'; # /available favorites
[1609]610
[3]611echo '</form>';
[1762]612
613echo
[2720]614'<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="db-forms" class="two-boxes even">'.
[1762]615
[1763]616'<div class="fieldset">'.
[1786]617'<h4>'.__('Menu').'</h4>'.
[1762]618'<p><label for="user_ui_nofavmenu" class="classic">'.
[1763]619form::checkbox('user_ui_nofavmenu',1,!$user_ui_nofavmenu).' '.
620__('Display favorites at the top of the menu').'</label></p></div>';
[1762]621
622if (count($iconsets_combo) > 1) {
[2566]623     echo
[1763]624          '<div class="fieldset">'.
[1786]625          '<h4>'.__('Dashboard icons').'</h4>'.
[1762]626          '<p><label for="user_ui_iconset" class="classic">'.__('Iconset:').'</label> '.
[1763]627          form::combo('user_ui_iconset',$iconsets_combo,$user_ui_iconset).'</p>'.
628          '</div>';
[1762]629} else {
[2449]630     echo '<p class="hidden">'.form::hidden('user_ui_iconset','').'</p>';
[1762]631}
632
633echo
[1763]634'<div class="fieldset">'.
[1786]635'<h4>'.__('Dashboard modules').'</h4>'.
[1762]636
637'<p><label for="user_dm_doclinks" class="classic">'.
638form::checkbox('user_dm_doclinks',1,$user_dm_doclinks).' '.
639__('Display documentation links').'</label></p>'.
640
641'<p><label for="user_dm_dcnews" class="classic">'.
642form::checkbox('user_dm_dcnews',1,$user_dm_dcnews).' '.
643__('Display Dotclear news').'</label></p>'.
644
645'<p><label for="user_dm_quickentry" class="classic">'.
646form::checkbox('user_dm_quickentry',1,$user_dm_quickentry).' '.
647__('Display quick entry form').'</label><br class="clear" />'. //Opera sucks
648'</p>';
[1764]649echo '</div>';
[1762]650
651# --BEHAVIOR-- adminDashboardOptionsForm
652$core->callBehavior('adminDashboardOptionsForm',$core);
653
654echo
[1763]655'<p>'.
[1762]656form::hidden('db-options','-').
657$core->formNonce().
658'<input type="submit" accesskey="s" value="'.__('Save my dashboard options').'" /></p>'.
659'</form>';
660
[1763]661echo '</div>'; # /multipart-user-favorites
[3]662
[0]663dcPage::helpBlock('core_user_pref');
664dcPage::close();
Note: See TracBrowser for help on using the repository browser.

Sites map