[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 | |
---|
| 13 | require dirname(__FILE__).'/../inc/admin/prepend.php'; |
---|
| 14 | |
---|
| 15 | dcPage::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] | 29 | if (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] | 43 | if ($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] | 52 | if (!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] | 59 | if (($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(); |
---|
| 70 | foreach ($formaters as $editor => $formats) { |
---|
| 71 | foreach ($formats as $format) { |
---|
| 72 | $format_by_editors[$format][$editor] = $editor; |
---|
| 73 | } |
---|
[2679] | 74 | } |
---|
[2736] | 75 | $available_formats = array('' => ''); |
---|
| 76 | foreach (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/'; |
---|
| 86 | if (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 |
---|
| 100 | if (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] | 155 | if (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 |
---|
| 209 | if (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] | 235 | if (!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 |
---|
| 260 | if (!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(); |
---|
| 288 | if (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 | |
---|
| 296 | if (!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) |
---|
| 311 | if (!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 | -------------------------------------------------------- */ |
---|
| 323 | dcPage::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 | |
---|
| 354 | if (!empty($_GET['upd'])) { |
---|
[1553] | 355 | dcPage::success(__('Personal information has been successfully updated.')); |
---|
[0] | 356 | } |
---|
[13] | 357 | if (!empty($_GET['updated'])) { |
---|
[1553] | 358 | dcPage::success(__('Personal options has been successfully updated.')); |
---|
[13] | 359 | } |
---|
[1762] | 360 | if (!empty($_GET['db-updated'])) { |
---|
| 361 | dcPage::success(__('Dashboard options has been successfully updated.')); |
---|
| 362 | } |
---|
[3] | 363 | if (!empty($_GET['append'])) { |
---|
[1553] | 364 | dcPage::success(__('Favorites have been successfully added.')); |
---|
[3] | 365 | } |
---|
| 366 | if (!empty($_GET['neworder'])) { |
---|
[1553] | 367 | dcPage::success(__('Favorites have been successfully updated.')); |
---|
[3] | 368 | } |
---|
| 369 | if (!empty($_GET['removed'])) { |
---|
[1553] | 370 | dcPage::success(__('Favorites have been successfully removed.')); |
---|
[3] | 371 | } |
---|
[30] | 372 | if (!empty($_GET['replaced'])) { |
---|
[1553] | 373 | dcPage::success(__('Default favorites have been successfully updated.')); |
---|
[30] | 374 | } |
---|
[3] | 375 | |
---|
| 376 | # User profile |
---|
| 377 | echo '<div class="multi-part" id="user-profile" title="'.__('My profile').'">'; |
---|
[0] | 378 | |
---|
| 379 | echo |
---|
[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>'. |
---|
| 384 | form::field('user_name',20,255,html::escapeHTML($user_name)).'</p>'. |
---|
[0] | 385 | |
---|
[1399] | 386 | '<p><label for="user_firstname">'.__('First Name:').'</label>'. |
---|
| 387 | form::field('user_firstname',20,255,html::escapeHTML($user_firstname)).'</p>'. |
---|
[0] | 388 | |
---|
[1399] | 389 | '<p><label for="user_displayname">'.__('Display name:').'</label>'. |
---|
| 390 | form::field('user_displayname',20,255,html::escapeHTML($user_displayname)).'</p>'. |
---|
[0] | 391 | |
---|
[1399] | 392 | '<p><label for="user_email">'.__('Email:').'</label>'. |
---|
| 393 | form::field('user_email',20,255,html::escapeHTML($user_email)).'</p>'. |
---|
[0] | 394 | |
---|
[1399] | 395 | '<p><label for="user_url">'.__('URL:').'</label>'. |
---|
[1726] | 396 | form::field('user_url',30,255,html::escapeHTML($user_url)).'</p>'. |
---|
| 397 | |
---|
| 398 | '<p><label for="user_lang">'.__('Language for my interface:').'</label>'. |
---|
| 399 | form::combo('user_lang',$lang_combo,$user_lang,'l10n').'</p>'. |
---|
| 400 | |
---|
| 401 | '<p><label for="user_tz">'.__('My timezone:').'</label>'. |
---|
| 402 | form::combo('user_tz',dt::getZones(true,true),$user_tz).'</p>'; |
---|
| 403 | |
---|
[0] | 404 | |
---|
| 405 | if ($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 | |
---|
| 429 | echo |
---|
[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, ... |
---|
| 438 | echo '<div class="multi-part" id="user-options" title="'.__('My options').'">'; |
---|
| 439 | |
---|
| 440 | echo |
---|
[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] | 444 | echo |
---|
[1786] | 445 | '<div class="fieldset">'. |
---|
[1609] | 446 | '<h4>'.__('Interface').'</h4>'. |
---|
| 447 | |
---|
| 448 | '<p><label for="user_ui_enhanceduploader" class="classic">'. |
---|
| 449 | form::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">'. |
---|
| 453 | form::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] | 457 | echo |
---|
[2206] | 458 | '<p><label for="user_ui_media_by_page" class="classic">'.__('Number of elements displayed per page in media manager:').'</label> '. |
---|
[2021] | 459 | form::field('user_ui_media_by_page',5,3,(integer) $user_ui_media_by_page).'</p>'; |
---|
| 460 | |
---|
[1609] | 461 | if ($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 | |
---|
| 470 | echo |
---|
[1786] | 471 | '</div>'; |
---|
[1609] | 472 | |
---|
| 473 | echo |
---|
[1786] | 474 | '<div class="fieldset">'. |
---|
[2736] | 475 | '<h4>'.__('Edition').'</h4>'; |
---|
[1609] | 476 | |
---|
[2736] | 477 | foreach ($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 | } |
---|
| 485 | echo |
---|
| 486 | '<p class="field"><label for="user_post_format">'.__('Preferred format:').'</label>'. |
---|
| 487 | form::combo('user_post_format',$available_formats,$user_options['post_format']).'</p>'; |
---|
[2679] | 488 | |
---|
[2736] | 489 | echo |
---|
[1786] | 490 | '<p class="field"><label for="user_post_status">'.__('Default entry status:').'</label>'. |
---|
[1399] | 491 | form::combo('user_post_status',$status_combo,$user_post_status).'</p>'. |
---|
[3] | 492 | |
---|
[1786] | 493 | '<p class="field"><label for="user_edit_size">'.__('Entry edit field height:').'</label>'. |
---|
[1399] | 494 | form::field('user_edit_size',5,4,(integer) $user_options['edit_size']).'</p>'. |
---|
[3] | 495 | |
---|
| 496 | '<p><label for="user_wysiwyg" class="classic">'. |
---|
[454] | 497 | form::checkbox('user_wysiwyg',1,$user_options['enable_wysiwyg']).' '. |
---|
[1786] | 498 | __('Enable WYSIWYG mode').'</label></p>'. |
---|
| 499 | |
---|
| 500 | '</div>'; |
---|
[240] | 501 | |
---|
[1609] | 502 | echo |
---|
[1786] | 503 | '<h4 class="pretty-title">'.__('Other options').'</h4>'; |
---|
[1609] | 504 | |
---|
| 505 | # --BEHAVIOR-- adminPreferencesForm |
---|
| 506 | $core->callBehavior('adminPreferencesForm',$core); |
---|
| 507 | |
---|
| 508 | echo |
---|
[1786] | 509 | '<p class="clear vertical-separator">'. |
---|
[3] | 510 | $core->formNonce(). |
---|
[1609] | 511 | '<input type="submit" accesskey="s" value="'.__('Save my options').'" /></p>'. |
---|
[3] | 512 | '</form>'; |
---|
| 513 | |
---|
| 514 | echo '</div>'; |
---|
| 515 | |
---|
[1763] | 516 | # My dashboard |
---|
[1762] | 517 | echo '<div class="multi-part" id="user-favorites" title="'.__('My dashboard').'">'; |
---|
[3] | 518 | $ws = $core->auth->user_prefs->addWorkspace('favorites'); |
---|
[1941] | 519 | echo '<h3>'.__('My dashboard').'</h3>'; |
---|
[1609] | 520 | |
---|
[2720] | 521 | echo '<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="favs-form" class="two-boxes odd">'; |
---|
[1763] | 522 | |
---|
| 523 | echo '<div id="my-favs" class="fieldset"><h4>'.__('My favorites').'</h4>'; |
---|
[32] | 524 | |
---|
[3] | 525 | $count = 0; |
---|
[2229] | 526 | $user_fav = $core->favs->getFavoriteIDs(false); |
---|
| 527 | foreach ($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>'; |
---|
[3] | 539 | } |
---|
| 540 | } |
---|
| 541 | if ($count > 0) echo '</ul>'; |
---|
| 542 | if ($count > 0) { |
---|
| 543 | echo |
---|
| 544 | '<div class="clear">'. |
---|
[82] | 545 | '<p>'.form::hidden('favs_order',''). |
---|
[3] | 546 | $core->formNonce(). |
---|
[114] | 547 | '<input type="submit" name="saveorder" value="'.__('Save order').'" /> '. |
---|
| 548 | |
---|
| 549 | '<input type="submit" class="delete" name="removeaction" '. |
---|
[3] | 550 | 'value="'.__('Delete selected favorites').'" '. |
---|
| 551 | 'onclick="return window.confirm(\''.html::escapeJS( |
---|
| 552 | __('Are you sure you want to remove selected favorites?')).'\');" /></p>'. |
---|
[82] | 553 | |
---|
[1924] | 554 | ($core->auth->isSuperAdmin() ? |
---|
[1763] | 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>'. |
---|
[1924] | 557 | '<p><input class="reset" type="submit" name="replace" value="'.__('Define as default favorites').'" />'.'</p>'. |
---|
| 558 | '</div>' |
---|
| 559 | : |
---|
[114] | 560 | ''). |
---|
[1924] | 561 | |
---|
[3] | 562 | '</div>'; |
---|
| 563 | } else { |
---|
| 564 | echo |
---|
| 565 | '<p>'.__('Currently no personal favorites.').'</p>'; |
---|
| 566 | } |
---|
| 567 | |
---|
[2229] | 568 | $avail_fav = $core->favs->getFavorites($core->favs->getAvailableFavoritesIDs()); |
---|
| 569 | $default_fav_ids = array(); |
---|
| 570 | foreach($core->favs->getFavoriteIDs(true) as $v) { |
---|
| 571 | $default_fav_ids[$v]=true; |
---|
[1773] | 572 | } |
---|
[1763] | 573 | echo '</div>'; # /box my-fav |
---|
[1609] | 574 | |
---|
[1763] | 575 | echo '<div class="fieldset" id="available-favs">'; |
---|
[1773] | 576 | # Available favorites |
---|
[1786] | 577 | echo '<h5 class="pretty-title">'.__('Other available favorites').'</h5>'; |
---|
[3] | 578 | $count = 0; |
---|
| 579 | function cmp($a,$b) { |
---|
[2229] | 580 | if ($a['title'] == $b['title']) { |
---|
[3] | 581 | return 0; |
---|
| 582 | } |
---|
[2229] | 583 | return ($a['title'] < $b['title']) ? -1 : 1; |
---|
[3] | 584 | } |
---|
[2229] | 585 | uasort($avail_fav,'cmp'); |
---|
| 586 | |
---|
| 587 | foreach ($avail_fav as $k => $v) { |
---|
| 588 | if (in_array($k,$user_fav)) { |
---|
| 589 | unset($avail_fav[$k]); |
---|
[3] | 590 | } |
---|
[1773] | 591 | } |
---|
[2229] | 592 | foreach ($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 | } |
---|
[3] | 603 | if ($count > 0) echo '</ul>'; |
---|
| 604 | echo |
---|
| 605 | '<p>'. |
---|
| 606 | $core->formNonce(). |
---|
[114] | 607 | '<input type="submit" name="appendaction" value="'.__('Add to my favorites').'" /></p>'; |
---|
[1763] | 608 | echo '</div>'; # /available favorites |
---|
[1609] | 609 | |
---|
[3] | 610 | echo '</form>'; |
---|
[1762] | 611 | |
---|
| 612 | echo |
---|
[2720] | 613 | '<form action="'.$core->adminurl->get("admin.user.preferences").'" method="post" id="db-forms" class="two-boxes even">'. |
---|
[1762] | 614 | |
---|
[1763] | 615 | '<div class="fieldset">'. |
---|
[1786] | 616 | '<h4>'.__('Menu').'</h4>'. |
---|
[1762] | 617 | '<p><label for="user_ui_nofavmenu" class="classic">'. |
---|
[1763] | 618 | form::checkbox('user_ui_nofavmenu',1,!$user_ui_nofavmenu).' '. |
---|
| 619 | __('Display favorites at the top of the menu').'</label></p></div>'; |
---|
[1762] | 620 | |
---|
| 621 | if (count($iconsets_combo) > 1) { |
---|
[2566] | 622 | echo |
---|
[1763] | 623 | '<div class="fieldset">'. |
---|
[1786] | 624 | '<h4>'.__('Dashboard icons').'</h4>'. |
---|
[1762] | 625 | '<p><label for="user_ui_iconset" class="classic">'.__('Iconset:').'</label> '. |
---|
[1763] | 626 | form::combo('user_ui_iconset',$iconsets_combo,$user_ui_iconset).'</p>'. |
---|
| 627 | '</div>'; |
---|
[1762] | 628 | } else { |
---|
[2449] | 629 | echo '<p class="hidden">'.form::hidden('user_ui_iconset','').'</p>'; |
---|
[1762] | 630 | } |
---|
| 631 | |
---|
| 632 | echo |
---|
[1763] | 633 | '<div class="fieldset">'. |
---|
[1786] | 634 | '<h4>'.__('Dashboard modules').'</h4>'. |
---|
[1762] | 635 | |
---|
| 636 | '<p><label for="user_dm_doclinks" class="classic">'. |
---|
| 637 | form::checkbox('user_dm_doclinks',1,$user_dm_doclinks).' '. |
---|
| 638 | __('Display documentation links').'</label></p>'. |
---|
| 639 | |
---|
| 640 | '<p><label for="user_dm_dcnews" class="classic">'. |
---|
| 641 | form::checkbox('user_dm_dcnews',1,$user_dm_dcnews).' '. |
---|
| 642 | __('Display Dotclear news').'</label></p>'. |
---|
| 643 | |
---|
| 644 | '<p><label for="user_dm_quickentry" class="classic">'. |
---|
| 645 | form::checkbox('user_dm_quickentry',1,$user_dm_quickentry).' '. |
---|
| 646 | __('Display quick entry form').'</label><br class="clear" />'. //Opera sucks |
---|
| 647 | '</p>'; |
---|
[1764] | 648 | echo '</div>'; |
---|
[1762] | 649 | |
---|
| 650 | # --BEHAVIOR-- adminDashboardOptionsForm |
---|
| 651 | $core->callBehavior('adminDashboardOptionsForm',$core); |
---|
| 652 | |
---|
| 653 | echo |
---|
[1763] | 654 | '<p>'. |
---|
[1762] | 655 | form::hidden('db-options','-'). |
---|
| 656 | $core->formNonce(). |
---|
| 657 | '<input type="submit" accesskey="s" value="'.__('Save my dashboard options').'" /></p>'. |
---|
| 658 | '</form>'; |
---|
| 659 | |
---|
[1763] | 660 | echo '</div>'; # /multipart-user-favorites |
---|
[3] | 661 | |
---|
[0] | 662 | dcPage::helpBlock('core_user_pref'); |
---|
| 663 | dcPage::close(); |
---|